From: Roland McGrath Date: Wed, 12 Mar 2014 20:20:44 +0000 (-0700) Subject: Update for ARM setjmp changes in main tree. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1718a99c06a763ee4896bfad798040011e6445c;p=thirdparty%2Fglibc.git Update for ARM setjmp changes in main tree. --- diff --git a/sysdeps/arm/nacl/include/bits/setjmp.h b/sysdeps/arm/nacl/include/bits/setjmp.h index 59c83cddcb0..fab102246ca 100644 --- a/sysdeps/arm/nacl/include/bits/setjmp.h +++ b/sysdeps/arm/nacl/include/bits/setjmp.h @@ -1,5 +1,5 @@ /* Private jmp_buf-related definitions. NaCl/ARM version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -30,9 +30,9 @@ The generic ARM definition includes r9 (v6), which is not permitted under NaCl. We add r3 even though it's call-clobbered, just to keep the size the same as the generic version. */ -#define JMP_BUF_REGLIST {r3, v1-v5, sl, fp, sp, lr} +#define JMP_BUF_REGLIST {r3, v1-v5, sl, fp} /* Index of __jmp_buf where the sp register resides. */ -#define __JMP_BUF_SP 8 +#define __JMP_BUF_SP 0 #endif /* include/bits/setjmp.h */