From: Roland McGrath Date: Sun, 4 Dec 1994 18:09:25 +0000 (+0000) Subject: Pass FP and SP as 3rd and 4th args, not 2nd and 3rd. X-Git-Tag: glibc-2.16-ports-before-merge~4019 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=876f191f7f9a7380a53bf0262ed7b5140df0523a;p=thirdparty%2Fglibc.git Pass FP and SP as 3rd and 4th args, not 2nd and 3rd. --- diff --git a/sysdeps/alpha/setjmp.S b/sysdeps/alpha/setjmp.S index 50d75ff8590..08932ccd1a7 100644 --- a/sysdeps/alpha/setjmp.S +++ b/sysdeps/alpha/setjmp.S @@ -23,7 +23,7 @@ Cambridge, MA 02139, USA. */ extra arguments. */ ENTRY (__sigsetjmp) lda $27, __sigsetjmp_aux/* Load address to jump to. */ - bis $15, $15, $17 /* Pass FP as 2nd arg. */ - bis $30, $30, $18 /* Pass SP as 3nd arg. */ + bis $15, $15, $18 /* Pass FP as 3rd arg. */ + bis $30, $30, $19 /* Pass SP as 4th arg. */ jmp $31, ($27), __sigsetjmp_aux /* Call __sigsetjmp_aux. */ .end __sigsetjmp