]> sourceware.org Git - glibc.git/commitdiff
Pass SP and FP as 3rd and 4th args, not 2nd and 3rd.
authorRoland McGrath <roland@gnu.org>
Sun, 4 Dec 1994 18:10:46 +0000 (18:10 +0000)
committerRoland McGrath <roland@gnu.org>
Sun, 4 Dec 1994 18:10:46 +0000 (18:10 +0000)
sysdeps/mips/setjmp.S

index fc61e34706a31b94d3000d5ee4b4db64dccd40c1..b3c024746873696b87cdf75eca67af0d3626e366 100644 (file)
@@ -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
This page took 0.041091 seconds and 5 git commands to generate.