diff options
author | Ian Romanick <[email protected]> | 2010-03-03 16:15:42 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-03-03 16:26:32 -0800 |
commit | f7dde2c131d8ec04c00f0dd3d7747019ff72a237 (patch) | |
tree | 884865a845d58e897c36871995096c4140a89ced /src/mesa/x86-64 | |
parent | 6e8e4b918d1dac8a0c20e7a5d6f4665a1eaf174f (diff) |
Remove support for GCC older than 3.3.0 from generated sources
Signed-off-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/x86-64')
-rw-r--r-- | src/mesa/x86-64/glapi_x86-64.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/x86-64/glapi_x86-64.S b/src/mesa/x86-64/glapi_x86-64.S index bd5a657e195..03a2c999ff0 100644 --- a/src/mesa/x86-64/glapi_x86-64.S +++ b/src/mesa/x86-64/glapi_x86-64.S @@ -31,7 +31,7 @@ #include "x86/assyntax.h" -#if defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 303 +#ifdef __GNUC__ # pragma GCC visibility push(default) # define HIDDEN(x) .hidden x #else |