diff options
author | Dimitry Andric <[email protected]> | 2011-01-25 09:22:12 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-01-25 09:22:14 -0700 |
commit | 731ec60da3ccb92f5bfb4d6f1bc3c8e712751376 (patch) | |
tree | 2356cbbfbb83f0ca6dca458672deb4e6bcb645f7 /src/mapi/glapi/glapi_x86-64.S | |
parent | 7acb98c67c680a0c8fb24a28d215622f396531a2 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/mapi/glapi/glapi_x86-64.S')
-rw-r--r-- | src/mapi/glapi/glapi_x86-64.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/glapi_x86-64.S b/src/mapi/glapi/glapi_x86-64.S index 469fac31ae6..1f4463d31c3 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@GOTPCREL(%rip), %rdi jmp pthread_getspecific@PLT #elif defined(THREADS) |