From 932dee87e3002be87dc3bcc49efd8ac9ac3e1fa4 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 4 Jan 2005 14:33:47 +0000 Subject: use HIDDEN macro to export fewer symbols (bug 2210) --- src/mesa/x86/assyntax.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/mesa/x86/assyntax.h') diff --git a/src/mesa/x86/assyntax.h b/src/mesa/x86/assyntax.h index 16aaf900f7..f2192cc220 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__ */ -- cgit v1.2.3