diff options
author | Brian Paul <[email protected]> | 2005-01-04 14:33:47 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-01-04 14:33:47 +0000 |
commit | 932dee87e3002be87dc3bcc49efd8ac9ac3e1fa4 (patch) | |
tree | 164fc0a5e0cf7bb316fd20d6ae2f5740c448bd54 /src/mesa/x86/assyntax.h | |
parent | bdbdab837eb8d84e2c2388ff2a780f5c0931473f (diff) |
use HIDDEN macro to export fewer symbols (bug 2210)
Diffstat (limited to 'src/mesa/x86/assyntax.h')
-rw-r--r-- | src/mesa/x86/assyntax.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/x86/assyntax.h b/src/mesa/x86/assyntax.h index 16aaf900f76..f2192cc220e 100644 --- a/src/mesa/x86/assyntax.h +++ b/src/mesa/x86/assyntax.h @@ -1730,4 +1730,11 @@ SECTION _DATA public align=16 class=DATA use32 flat #define TLBL(a) CONCAT(a,$) #endif +/* hidden symbol visibility support */ +#ifdef GNU_ASSEMBLER +#define HIDDEN(a) .hidden a +#else +#define HIDDEN(a) +#endif + #endif /* __ASSYNTAX_H__ */ |