diff options
author | Jose Fonseca <[email protected]> | 2015-12-01 23:07:08 +0000 |
---|---|---|
committer | Jose Fonseca <[email protected]> | 2015-12-02 07:51:04 +0000 |
commit | 56aff6bb4eafe35ba301f5d60027377abc4cfd9f (patch) | |
tree | ab4fb5d62248754462ebfc00e0197b66bec11817 /src/gallium/include | |
parent | 51564f04b77e6d29a888a4fbd83d96de062ac634 (diff) |
Remove Sun CC specific code.
Reviewed-by: Matt Turner <[email protected]>
Acked-by: Alan Coopersmith <[email protected]>
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_compiler.h | 6 | ||||
-rw-r--r-- | src/gallium/include/pipe/p_config.h | 4 |
2 files changed, 1 insertions, 9 deletions
diff --git a/src/gallium/include/pipe/p_compiler.h b/src/gallium/include/pipe/p_compiler.h index 7eed57018b7..c48a55e22fc 100644 --- a/src/gallium/include/pipe/p_compiler.h +++ b/src/gallium/include/pipe/p_compiler.h @@ -132,7 +132,7 @@ typedef unsigned char boolean; /* Macros for data alignment. */ -#if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) || defined(__SUNPRO_CC) +#if defined(__GNUC__) /* See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Type-Attributes.html */ #define PIPE_ALIGN_TYPE(_alignment, _type) _type __attribute__((aligned(_alignment))) @@ -178,10 +178,6 @@ void _ReadWriteBarrier(void); #pragma intrinsic(_ReadWriteBarrier) #define PIPE_READ_WRITE_BARRIER() _ReadWriteBarrier() -#elif defined(__SUNPRO_C) || defined(__SUNPRO_CC) - -#define PIPE_READ_WRITE_BARRIER() __machine_rw_barrier() - #else #warning "Unsupported compiler" diff --git a/src/gallium/include/pipe/p_config.h b/src/gallium/include/pipe/p_config.h index ac14f86fdc4..0b570c7894e 100644 --- a/src/gallium/include/pipe/p_config.h +++ b/src/gallium/include/pipe/p_config.h @@ -77,10 +77,6 @@ #define PIPE_CC_ICL #endif -#if defined(__SUNPRO_C) || defined(__SUNPRO_CC) -#define PIPE_CC_SUNPRO -#endif - /* * Processor architecture |