diff options
author | Brian Paul <[email protected]> | 2005-11-04 00:52:08 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-11-04 00:52:08 +0000 |
commit | 84f3ff91d967887545363cc826b118120a135a58 (patch) | |
tree | 887f03d109b88beba75dcb1c82542b3398885308 /src/mesa/x86/assyntax.h | |
parent | d78834b3061c8e43dde583363e0896cb554f2fcc (diff) |
fix MinGW problems (bug 4956)
Diffstat (limited to 'src/mesa/x86/assyntax.h')
-rw-r--r-- | src/mesa/x86/assyntax.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/x86/assyntax.h b/src/mesa/x86/assyntax.h index 4b7317b0805..9bceacebdb6 100644 --- a/src/mesa/x86/assyntax.h +++ b/src/mesa/x86/assyntax.h @@ -1736,7 +1736,7 @@ SECTION _DATA public align=16 class=DATA use32 flat */ #if defined(GNU_ASSEMBLER) && !defined(__DJGPP__) && !defined(__MINGW32__) # define HIDDEN(x) .hidden x -#elif defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 303 +#elif defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 303 && !defined(__MINGW32__) # pragma GCC visibility push(default) # define HIDDEN(x) .hidden x #else |