diff options
author | Roland McGrath <roland@gnu.org> | 2005-07-08 06:11:29 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-07-08 06:11:29 +0000 |
commit | 6aeeeb9a09502599dc170f740fb7d1ec46cdb798 (patch) | |
tree | f515808d809ec4859e92b2521906eee250d0225b /sysdeps/hppa | |
parent | 6c2d582980965168d89310d2e3492b29fc376af5 (diff) | |
download | glibc-6aeeeb9a09502599dc170f740fb7d1ec46cdb798.tar.gz glibc-6aeeeb9a09502599dc170f740fb7d1ec46cdb798.tar.xz glibc-6aeeeb9a09502599dc170f740fb7d1ec46cdb798.zip |
* sysdeps/hppa/setjmp.S (__sigsetjmp): Use %r1 not %r19.
Diffstat (limited to 'sysdeps/hppa')
-rw-r--r-- | sysdeps/hppa/setjmp.S | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sysdeps/hppa/setjmp.S b/sysdeps/hppa/setjmp.S index f10a7a304d..0da34db6f1 100644 --- a/sysdeps/hppa/setjmp.S +++ b/sysdeps/hppa/setjmp.S @@ -53,17 +53,17 @@ __sigsetjmp: stw %rp, 80(%r26) - ldo 88(%r26),%r19 - fstds,ma %fr12, 8(%r19) /* 88 */ - fstds,ma %fr13, 8(%r19) /* 96 */ - fstds,ma %fr14, 8(%r19) /* 104 */ - fstds,ma %fr15, 8(%r19) /* 112 */ - fstds,ma %fr16, 8(%r19) /* 120 */ - fstds,ma %fr17, 8(%r19) /* 128 */ - fstds,ma %fr18, 8(%r19) /* 136 */ - fstds,ma %fr19, 8(%r19) /* 144 */ - fstds,ma %fr20, 8(%r19) /* 152 */ - fstds %fr21, 0(%r19) /* 160 */ + ldo 88(%r26),%r1 + fstds,ma %fr12, 8(%r1) /* 88 */ + fstds,ma %fr13, 8(%r1) /* 96 */ + fstds,ma %fr14, 8(%r1) /* 104 */ + fstds,ma %fr15, 8(%r1) /* 112 */ + fstds,ma %fr16, 8(%r1) /* 120 */ + fstds,ma %fr17, 8(%r1) /* 128 */ + fstds,ma %fr18, 8(%r1) /* 136 */ + fstds,ma %fr19, 8(%r1) /* 144 */ + fstds,ma %fr20, 8(%r1) /* 152 */ + fstds %fr21, 0(%r1) /* 160 */ b __sigjmp_save nop .procend |