diff options
author | Jeff Law <law@gcc.gnu.org> | 1995-05-02 15:15:32 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1995-05-02 15:15:32 -0600 |
commit | 79cb82b9657058e5b822cdc22699ba3ab108048c (patch) | |
tree | e5aaaa943667795e2f31651ba2365417f1db5304 /gcc/config/pa/pa.c | |
parent | 60374599761f74ac16626190acf43132835d71a5 (diff) | |
download | gcc-79cb82b9657058e5b822cdc22699ba3ab108048c.zip gcc-79cb82b9657058e5b822cdc22699ba3ab108048c.tar.gz gcc-79cb82b9657058e5b822cdc22699ba3ab108048c.tar.bz2 |
* pa.c (hppa_expand_epilogue): Fix thinko in last change.
From-SVN: r9565
Diffstat (limited to 'gcc/config/pa/pa.c')
-rw-r--r-- | gcc/config/pa/pa.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index f6a6960..1ef1c38 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -2446,8 +2446,7 @@ hppa_expand_epilogue () That won't work since if the stack is exactly 8k set_reg_plus_d doesn't set %r1, just %r30. */ - load_reg (2, - (actual_fsize + 20 + ((- actual_fsize) & ~0x7ff)), - STACK_POINTER_REGNUM); + load_reg (2, - 20, STACK_POINTER_REGNUM); } /* Reset stack pointer (and possibly frame pointer). The stack */ |