glapi: adding @ char before type specifier in glapi_x86.S
authorDimitry Andric <dimitry@andric.com>
Tue, 25 Jan 2011 16:23:44 +0000 (09:23 -0700)
committerBrian Paul <brianp@vmware.com>
Tue, 25 Jan 2011 16:23:46 +0000 (09:23 -0700)
Fixes http://bugs.freedesktop.org/show_bug.cgi?id=33433
NOTE: This is a candidate for the 7.9 and 7.10 branches.

Signed-off-by: Brian Paul <brianp@vmware.com>
src/mapi/glapi/gen/gl_x86_asm.py
src/mapi/glapi/glapi_x86.S

index 21996a394214d758efb0ac1b9ec7e66ee2f4093e..4ef4acb564e35cad76b1ef86400bc73c1e3f0409 100644 (file)
@@ -73,7 +73,7 @@ class PrintGenericStubs(gl_XML.gl_print_base):
                print '#define GL_OFFSET(x) CODEPTR(REGOFF(4 * x, EAX))'
                print ''
                print '#if defined(GNU_ASSEMBLER) && !defined(__DJGPP__) && !defined(__MINGW32__) && !defined(__APPLE__)'
-               print '#define GLOBL_FN(x) GLOBL x ; .type x, function'
+               print '#define GLOBL_FN(x) GLOBL x ; .type x, @function'
                print '#else'
                print '#define GLOBL_FN(x) GLOBL x'
                print '#endif'
index fa448c1704f800b361c15ab2c6dd6d94aa732e4c..8d85f61ce009e42657ff04f7832dec48f0456f31 100644 (file)
@@ -46,7 +46,7 @@
 #define GL_OFFSET(x) CODEPTR(REGOFF(4 * x, EAX))
 
 #if defined(GNU_ASSEMBLER) && !defined(__DJGPP__) && !defined(__MINGW32__) && !defined(__APPLE__)
-#define GLOBL_FN(x) GLOBL x ; .type x, function
+#define GLOBL_FN(x) GLOBL x ; .type x, @function
 #else
 #define GLOBL_FN(x) GLOBL x
 #endif