diff options
author | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2005-06-10 18:25:35 +0000 |
---|---|---|
committer | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2005-06-10 18:25:35 +0000 |
commit | 569b0e03fb08ea519434d26ee77aeb3a9cdeedf3 (patch) | |
tree | ce7bae583cdc2d0d15ac3f64f5f4d8ac8c13c2d3 /libc/sysdeps/linux/arm/setjmp.S | |
parent | 79cdbec85c2c0154c8d5c6abeedee2f088300e0d (diff) |
Remove TEXTREL relocations for ARM.
Hide __syscall_error from outside libc.
From Peter Mazinger.
Diffstat (limited to 'libc/sysdeps/linux/arm/setjmp.S')
-rw-r--r-- | libc/sysdeps/linux/arm/setjmp.S | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/arm/setjmp.S b/libc/sysdeps/linux/arm/setjmp.S index 402a66422..47ddf4adb 100644 --- a/libc/sysdeps/linux/arm/setjmp.S +++ b/libc/sysdeps/linux/arm/setjmp.S @@ -38,5 +38,9 @@ __sigsetjmp: sub r0, r0, #48 /* Make a tail call to __sigjmp_save; it takes the same args. */ - B __sigjmp_save (PLT) +#ifdef __PIC__ + B __sigjmp_save(PLT) +#else + B __sigjmp_save +#endif .size __sigsetjmp,.-__sigsetjmp; |