diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-09-11 07:02:50 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-09-11 07:02:50 +0000 |
commit | 7368568f0ba15c5aa0d2394d3012d5e0898b76a9 (patch) | |
tree | a06defc128908237559ccb24ec9b5a787bbc47e3 | |
parent | 6300268660bde25366b9ace6c90f950f4cf40cb1 (diff) | |
download | glibc-7368568f0ba15c5aa0d2394d3012d5e0898b76a9.tar.gz glibc-7368568f0ba15c5aa0d2394d3012d5e0898b76a9.tar.xz glibc-7368568f0ba15c5aa0d2394d3012d5e0898b76a9.zip |
(__longjmp): Correct %fp frame pointer offset for non-fast path.
-rw-r--r-- | sysdeps/sparc/sparc32/__longjmp.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/sparc/sparc32/__longjmp.S b/sysdeps/sparc/sparc32/__longjmp.S index 1d49b264bb..ef83dee76a 100644 --- a/sysdeps/sparc/sparc32/__longjmp.S +++ b/sysdeps/sparc/sparc32/__longjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 93, 96, 97, 98, 99 Free Software Foundation, Inc. +/* Copyright (C) 1991, 93, 96, 97, 98, 99, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -23,7 +23,7 @@ #include <bits/setjmp.h> #define ENV(base,reg) [%base + (reg * 4)] #define ST_FLUSH_WINDOWS 3 -#define RW_FP [%fp + 0x38] +#define RW_FP [%fp + 0x48] ENTRY(__longjmp) /* Store our arguments in global registers so we can still |