diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-30 22:09:42 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-30 22:09:42 +0000 |
commit | cedfee12f7d479bb5d7f3245d4cdac3038d2fb50 (patch) | |
tree | f02ffa926ad84eef09f5b7549a472a189d0e4710 /libc/sysdeps/linux/i386 | |
parent | e6c08ea6437471b025b940944555ddc6f115c1b2 (diff) |
Fix symbol problem. Add in arm support -- might even work...
Diffstat (limited to 'libc/sysdeps/linux/i386')
-rw-r--r-- | libc/sysdeps/linux/i386/setjmp.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/i386/setjmp.S b/libc/sysdeps/linux/i386/setjmp.S index 466fed2ba..b96796eca 100644 --- a/libc/sysdeps/linux/i386/setjmp.S +++ b/libc/sysdeps/linux/i386/setjmp.S @@ -54,7 +54,7 @@ __sigsetjmp: L(here): popl %ecx addl $_GLOBAL_OFFSET_TABLE_+[.-L(here)], %ecx - movl C_SYMBOL_NAME(__sigjmp_save@GOT)(%ecx), %ecx + movl (__sigjmp_save)(%ecx), %ecx jmp *%ecx #else jmp __sigjmp_save |