diff options
author | David Schleef <ds@schleef.org> | 2002-04-10 07:20:20 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2002-04-10 07:20:20 +0000 |
commit | f0923988dea536a51618d3cdca0c2621699143f4 (patch) | |
tree | a94477742415f4434d13774ff79a5345e2c75749 /libc/sysdeps/linux/powerpc/setjmp.S | |
parent | 17c0e72289c2f3703405eba3392861077dae8030 (diff) |
Make assembly code PIC-compatible.
Diffstat (limited to 'libc/sysdeps/linux/powerpc/setjmp.S')
-rw-r--r-- | libc/sysdeps/linux/powerpc/setjmp.S | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/powerpc/setjmp.S b/libc/sysdeps/linux/powerpc/setjmp.S index 6cf48544b..84c287f95 100644 --- a/libc/sysdeps/linux/powerpc/setjmp.S +++ b/libc/sysdeps/linux/powerpc/setjmp.S @@ -76,5 +76,9 @@ 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 .size __sigsetjmp,.-__sigsetjmp |