about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/i386
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2012-02-05 14:34:14 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-02-05 14:34:14 +0000
commitd8e0ca509a83e832123f6ab508fce620159fb2dc (patch)
treeec8f395a1d980e9fde309174980190102f139121 /sysdeps/unix/sysv/linux/i386
parentb1da7dd99dcffe28d02a6515a9dc8cca3205a497 (diff)
downloadglibc-d8e0ca509a83e832123f6ab508fce620159fb2dc.tar.gz
glibc-d8e0ca509a83e832123f6ab508fce620159fb2dc.tar.xz
glibc-d8e0ca509a83e832123f6ab508fce620159fb2dc.zip
Use macro for PIC setup in inline asm.
Diffstat (limited to 'sysdeps/unix/sysv/linux/i386')
-rw-r--r--sysdeps/unix/sysv/linux/i386/sysdep.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/sysdep.h b/sysdeps/unix/sysv/linux/i386/sysdep.h
index 90660fdde7..1dded7a7eb 100644
--- a/sysdeps/unix/sysv/linux/i386/sysdep.h
+++ b/sysdeps/unix/sysv/linux/i386/sysdep.h
@@ -514,20 +514,11 @@ asm (".L__X'%ebx = 1\n\t"
 # define check_consistency()						      \
   ({ int __res;								      \
      __asm__ __volatile__						      \
-       ("call "GET_PC_THUNK_STR(cx)";"					      \
-	"addl $_GLOBAL_OFFSET_TABLE_, %%ecx;"				      \
+       (LOAD_PIC_REG_STR (cx) ";"					      \
 	"subl %%ebx, %%ecx;"						      \
 	"je 1f;"							      \
 	"ud2;"								      \
 	"1:\n"								      \
-	".section .gnu.linkonce.t."GET_PC_THUNK_STR(cx)",\"ax\",@progbits;"   \
-	".globl "GET_PC_THUNK_STR(cx)";"				      \
-	".hidden "GET_PC_THUNK_STR(cx)";"				      \
-	".type "GET_PC_THUNK_STR(cx)",@function;"			      \
-	GET_PC_THUNK_STR(cx)":"						      \
-	"movl (%%esp), %%ecx;"						      \
-	"ret;"								      \
-	".previous"							      \
 	: "=c" (__res));						      \
      __res; })
 #endif