diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1992-12-11 07:17:37 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1992-12-11 07:17:37 -0500 |
commit | 008d7af28d7df4aace9bae995d2ff7a3aa058df2 (patch) | |
tree | 5e79a1c62be1789fc2f05c786d666035d6c46526 /gcc | |
parent | abf458fa2a5e0c7e3ebf2fb7ea43bbf0d42205fd (diff) | |
download | gcc-008d7af28d7df4aace9bae995d2ff7a3aa058df2.zip gcc-008d7af28d7df4aace9bae995d2ff7a3aa058df2.tar.gz gcc-008d7af28d7df4aace9bae995d2ff7a3aa058df2.tar.bz2 |
(output_epilog): Remove garbage from one decl of EXTRA.
(output_epilog): Remove garbage from one decl of EXTRA. Subtract, not
add, size from frame pointer.
From-SVN: r2861
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/alpha/alpha.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index e13c2a7..8c39b16 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -1407,7 +1407,7 @@ output_epilog (file, size) HOST_WIDE_INT high = ((tmp1 >> 16) & 0xffff) - 2 * ((tmp1 >> 16) & 0x8000); HOST_WIDE_INT tmp2 = frame_size - (high << 16) - low; - int extra = 0xe; + int extra = 0; int in_reg = 31; if (tmp2) @@ -1431,7 +1431,7 @@ output_epilog (file, size) fprintf (file, "\tldah $28,%d($%d)\n", high, in_reg); - fprintf (file, "\taddq $25,$28,$28\n"); + fprintf (file, "\tsubq $25,$28,$28\n"); reg_offset_from = 28; } |