diff options
author | Brian Paul <[email protected]> | 2011-01-25 12:12:34 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-01-25 12:12:34 -0700 |
commit | ba0953da5b2440ba19f427ed82266f0dd0cdf96a (patch) | |
tree | 49bc0adef0d205e9a4d829ae5e560c7a31520994 /src/mapi/glapi/gen | |
parent | 40ac24e631e694e00652a2df6c0ac5d0f07f620f (diff) |
Revert "glapi: adding missing @GOTPCREL qualifer in glapi_x86-64.S"
This reverts commit 731ec60da3ccb92f5bfb4d6f1bc3c8e712751376.
This change causes crashes in the x86-64 dispatch code.
Diffstat (limited to 'src/mapi/glapi/gen')
-rw-r--r-- | src/mapi/glapi/gen/gl_x86-64_asm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/gen/gl_x86-64_asm.py b/src/mapi/glapi/gen/gl_x86-64_asm.py index 2f65fae43fb..2fa140dc308 100644 --- a/src/mapi/glapi/gen/gl_x86-64_asm.py +++ b/src/mapi/glapi/gen/gl_x86-64_asm.py @@ -166,7 +166,7 @@ class PrintGenericStubs(gl_XML.gl_print_base): print '' print '\t.p2align\t4,,15' print '_x86_64_get_dispatch:' - print '\tmovq\t_gl_DispatchTSD@GOTPCREL(%rip), %rdi' + print '\tmovq\t_gl_DispatchTSD(%rip), %rdi' print '\tjmp\tpthread_getspecific@PLT' print '' print '#elif defined(THREADS)' |