diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2010-02-19 03:09:06 -0800 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2010-02-19 03:09:06 -0800 |
commit | de2101834f0c80e38008e8d1d1848ab94ce2341e (patch) | |
tree | e41e3459f66daa646013d8c09dfae63a27b6dad5 /libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486 | |
parent | 4e9f93bb64c5815b071393ca738cb14b8624e605 (diff) |
more fixes for x86_64 nptl
also cleanup some PIC (should be __PIC__) that snuck in
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486')
3 files changed, 3 insertions, 3 deletions
diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S b/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S index aff01e907..00f8b56f9 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S @@ -180,7 +180,7 @@ __lll_timedlock_wait: cfi_rel_offset(%ebx, 0) # ifndef __ASSUME_FUTEX_CLOCK_REALTIME -# ifdef PIC +# ifdef __PIC__ LOAD_PIC_REG (bx) cmpl $0, __have_futex_clock_realtime@GOTOFF(%ebx) # else diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S b/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S index ab4ef0a45..6261805f1 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S @@ -567,7 +567,7 @@ __condvar_w_cleanup: .uleb128 0 .Lcstend: -#ifdef PIC +#ifdef __PIC__ .section .gnu.linkonce.t.__i686.get_pc_thunk.cx,"ax",@progbits .globl __i686.get_pc_thunk.cx .hidden __i686.get_pc_thunk.cx diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S b/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S index 218b12f9c..a1e3225cb 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S @@ -146,7 +146,7 @@ sem_timedwait: .Lafter_ret: 3: negl %esi 6: -#ifdef PIC +#ifdef __PIC__ call __x86.get_pc_thunk.bx #else movl $4f, %ebx |