1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-11-06 19:29:35 +03:00

Pass SP and FP as 3rd and 4th args, not 2nd and 3rd.

This commit is contained in:
Roland McGrath
1994-12-04 18:10:46 +00:00
parent 876f191f7f
commit 97f187ac88

View File

@@ -22,10 +22,10 @@ Cambridge, MA 02139, USA. */
reliably access the stack or frame pointers, so we pass them in as reliably access the stack or frame pointers, so we pass them in as
extra arguments. */ extra arguments. */
ENTRY (__sigsetjmp) ENTRY (__sigsetjmp)
move a1, sp move a2, sp
#ifdef __sgi__ #ifdef __sgi__
move a2, fp move a3, fp
#else #else
move a2, $fp move a3, $fp
#endif #endif
j __sigsetjmp_aux j __sigsetjmp_aux