From 97f187ac88943a87b582507495f1f9e9b9334b51 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sun, 4 Dec 1994 18:10:46 +0000 Subject: [PATCH] Pass SP and FP as 3rd and 4th args, not 2nd and 3rd. --- sysdeps/mips/setjmp.S | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.43.5