diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-11-08 07:03:52 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-11-08 07:03:52 +0000 |
commit | c097f7325346ef7f258084fa78263a6f18c10213 (patch) | |
tree | 099a67e8876c7d8c0f741fb25f5be6c2e183fd7b /sysdeps/sh/sh3/setjmp.S | |
parent | ece70a1400120c0e5678815423b62770be85bc62 (diff) | |
download | glibc-c097f7325346ef7f258084fa78263a6f18c10213.zip glibc-c097f7325346ef7f258084fa78263a6f18c10213.tar.gz glibc-c097f7325346ef7f258084fa78263a6f18c10213.tar.bz2 |
Update.
* sysdeps/sh/sh3/setjmp.S (__sigsetjmp): Skip FPU fields.
Diffstat (limited to 'sysdeps/sh/sh3/setjmp.S')
-rw-r--r-- | sysdeps/sh/sh3/setjmp.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/sh/sh3/setjmp.S b/sysdeps/sh/sh3/setjmp.S index ea41f45..74c7f70 100644 --- a/sysdeps/sh/sh3/setjmp.S +++ b/sysdeps/sh/sh3/setjmp.S @@ -1,4 +1,4 @@ -/* setjmp for SH4. +/* setjmp for SH3. Copyright (C) 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -27,7 +27,7 @@ ENTRY (__setjmp) mov #0, r5 ENTRY (__sigsetjmp) /* Save registers */ - add #JB_SIZE, r4 + add #(JB_SIZE - 4 * 5), r4 stc.l gbr, @-r4 sts.l pr, @-r4 mov.l r15, @-r4 |