Mesa (master): glapi: adding missing @GOTPCREL qualifer in glapi_x86-64.S

Brian Paul brianp at kemper.freedesktop.org
Tue Jan 25 16:24:48 UTC 2011


Module: Mesa
Branch: master
Commit: 731ec60da3ccb92f5bfb4d6f1bc3c8e712751376
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=731ec60da3ccb92f5bfb4d6f1bc3c8e712751376

Author: Dimitry Andric <dimitry at andric.com>
Date:   Tue Jan 25 09:22:12 2011 -0700

glapi: adding missing @GOTPCREL qualifer in glapi_x86-64.S

Fixes http://bugs.freedesktop.org/show_bug.cgi?id=33440
NOTE: This is a candidate for the 7.9 and 7.10 branches

Signed-off-by: Brian Paul <brianp at vmware.com>

---

 src/mapi/glapi/gen/gl_x86-64_asm.py |    2 +-
 src/mapi/glapi/glapi_x86-64.S       |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mapi/glapi/gen/gl_x86-64_asm.py b/src/mapi/glapi/gen/gl_x86-64_asm.py
index 2fa140d..2f65fae 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(%rip), %rdi'
+		print '\tmovq\t_gl_DispatchTSD at GOTPCREL(%rip), %rdi'
 		print '\tjmp\tpthread_getspecific at PLT'
 		print ''
 		print '#elif defined(THREADS)'
diff --git a/src/mapi/glapi/glapi_x86-64.S b/src/mapi/glapi/glapi_x86-64.S
index 469fac3..1f4463d 100644
--- a/src/mapi/glapi/glapi_x86-64.S
+++ b/src/mapi/glapi/glapi_x86-64.S
@@ -73,7 +73,7 @@ _x86_64_get_dispatch:
 
 	.p2align	4,,15
 _x86_64_get_dispatch:
-	movq	_gl_DispatchTSD(%rip), %rdi
+	movq	_gl_DispatchTSD at GOTPCREL(%rip), %rdi
 	jmp	pthread_getspecific at PLT
 
 #elif defined(THREADS)




More information about the mesa-commit mailing list