From b5cca43546bffef77ce8d5b5ce2670d5372ded65 Mon Sep 17 00:00:00 2001 From: David McCullough Date: Mon, 3 Mar 2003 00:05:15 +0000 Subject: Fix the double sub #48, should have been an add :-) --- libc/sysdeps/linux/arm/setjmp.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc') 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} -- cgit v1.2.3