From: Roland McGrath Date: Sun, 4 Dec 1994 18:10:46 +0000 (+0000) Subject: Pass SP and FP as 3rd and 4th args, not 2nd and 3rd. X-Git-Tag: glibc-2.16-ports-before-merge~4018 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=97f187ac88943a87b582507495f1f9e9b9334b51;p=glibc.git Pass SP and FP as 3rd and 4th args, not 2nd and 3rd. --- diff --git a/sysdeps/mips/setjmp.S b/sysdeps/mips/setjmp.S index fc61e34706..b3c0247468 100644 --- a/sysdeps/mips/setjmp.S +++ b/sysdeps/mips/setjmp.S @@ -22,10 +22,10 @@ Cambridge, MA 02139, USA. */ reliably access the stack or frame pointers, so we pass them in as extra arguments. */ ENTRY (__sigsetjmp) - move a1, sp + move a2, sp #ifdef __sgi__ - move a2, fp + move a3, fp #else - move a2, $fp + move a3, $fp #endif j __sigsetjmp_aux