diff options
author | David McCullough <davidm@snapgear.com> | 2003-03-03 00:05:15 +0000 |
---|---|---|
committer | David McCullough <davidm@snapgear.com> | 2003-03-03 00:05:15 +0000 |
commit | b5cca43546bffef77ce8d5b5ce2670d5372ded65 (patch) | |
tree | b2d8289e420164b11b3c9c51fb290acf88677d96 /libc/sysdeps | |
parent | 75985b3291d4e47978b9da444c1deb29eb197011 (diff) |
Fix the double sub #48, should have been an add :-)
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/arm/setjmp.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/arm/setjmp.S b/libc/sysdeps/linux/arm/setjmp.S index aaaa81db1..402a66422 100644 --- a/libc/sysdeps/linux/arm/setjmp.S +++ b/libc/sysdeps/linux/arm/setjmp.S @@ -30,7 +30,7 @@ __sigsetjmp: #if defined __UCLIBC_HAS_FLOATS__ && ! defined __UCLIBC_HAS_SOFT_FLOAT__ sfmea f4, 4, [r0]! #else - sub r0, r0, #48 /* skip the FP registers */ + add r0, r0, #48 /* skip the FP registers */ #endif stmia r0, {v1-v6, sl, fp, sp, lr} |