diff options
author | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2007-01-05 10:20:37 +0000 |
---|---|---|
committer | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2007-01-05 10:20:37 +0000 |
commit | e26ed573b62f69d9813e72fda4ee3da6eaf4d7b7 (patch) | |
tree | b089faf7543e285fe7076a6f28f77c32140c9687 /libc/sysdeps/linux/powerpc/setjmp.S | |
parent | 3a3af36f1bef68c9942e9ef3fb83cc15aeabfcc0 (diff) |
Support SecurePLTs for PowerPC. You need a toolchain that supports
config option --enable-secureplt. The assembler must also
supports R_PPC_REL16* relocations. gcc 4.1.1 and binutils 2.17
is known to do this.
Diffstat (limited to 'libc/sysdeps/linux/powerpc/setjmp.S')
-rw-r--r-- | libc/sysdeps/linux/powerpc/setjmp.S | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libc/sysdeps/linux/powerpc/setjmp.S b/libc/sysdeps/linux/powerpc/setjmp.S index b1625b615..3bdf6cbfe 100644 --- a/libc/sysdeps/linux/powerpc/setjmp.S +++ b/libc/sysdeps/linux/powerpc/setjmp.S @@ -76,9 +76,7 @@ FP( stfd fp29,((JB_FPRS+15*2)*4)(3)) FP( stfd fp30,((JB_FPRS+16*2)*4)(3)) stw r31,((JB_GPRS+17)*4)(3) FP( stfd fp31,((JB_FPRS+17*2)*4)(3)) -#ifdef __PIC__ - b __sigjmp_save@plt -#else - b __sigjmp_save -#endif + + b __sigjmp_save@local + .size __sigsetjmp,.-__sigsetjmp |