mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-23 07:20:37 +02:00
glapi: adding @ char before type specifier in glapi_x86.S
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>
This commit is contained in:
parent
731ec60da3
commit
37bffe8d12
2 changed files with 2 additions and 2 deletions
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue