diff options
author | Timothy Arceri <[email protected]> | 2016-09-07 14:28:20 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2016-09-23 16:17:16 +1000 |
commit | 4eb0e90c6b59f9c5b789b33078afdec1975838af (patch) | |
tree | b1cf5e9fe5a739f95fd2adc89b3399d76a189c06 /src/util/macros.h | |
parent | c0a7e931e36e7d8a244da5947ec6de023b58b0a5 (diff) |
util: remove Sun C Compiler support
Support for this compiler was dropped in 51564f04b77e6
Acked-by: Edward O'Callaghan <[email protected]>
Diffstat (limited to 'src/util/macros.h')
-rw-r--r-- | src/util/macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/macros.h b/src/util/macros.h index 9ddf675965b..9dea2a05f4c 100644 --- a/src/util/macros.h +++ b/src/util/macros.h @@ -220,7 +220,7 @@ do { \ #define MUST_CHECK #endif -#if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) +#if defined(__GNUC__) #define ATTRIBUTE_NOINLINE __attribute__((noinline)) #else #define ATTRIBUTE_NOINLINE |