diff options
author | Kazu Hirata <kazu@gcc.gnu.org> | 2003-01-07 04:25:58 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-01-07 04:25:58 +0000 |
commit | 4705d102814701567cc9551b3fb17e3dd0cf9620 (patch) | |
tree | 62ecdab14709c3f1d478eaa6269c35ea32ce6984 | |
parent | 98c9a8e89f8ceb01213fcc81133f6986c5539d09 (diff) | |
download | gcc-4705d102814701567cc9551b3fb17e3dd0cf9620.zip gcc-4705d102814701567cc9551b3fb17e3dd0cf9620.tar.gz gcc-4705d102814701567cc9551b3fb17e3dd0cf9620.tar.bz2 |
h8300.c (h8300_expand_prologue): Remove fsize.
* config/h8300/h8300.c (h8300_expand_prologue): Remove fsize.
(h8300_expand_epilogue): Likewise.
From-SVN: r60978
-rw-r--r-- | gcc/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.c | 6 |
2 files changed, 9 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 416dae7..a8d9d24 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-01-06 Kazu Hirata <kazu@cs.umass.edu> + + * config/h8300/h8300.c (h8300_expand_prologue): Remove fsize. + (h8300_expand_epilogue): Likewise. + 2003-01-06 Aldy Hernandez <aldyh@redhat.com> Segher Boessenkool <segher@koffie.nl> @@ -46,12 +51,12 @@ * config/mips/mips.md (leadi): Use dla rather than la. -2003-01-06 Svein E. Seldal <Svein.Seldal@solidas.com> +2003-01-06 Svein E. Seldal <Svein.Seldal@solidas.com> * config/c4x/c4x.h: Updated specs for new gas format. Fixed bug in C33_FLAG. Added proper C33 support in ASM_FILE_START macro. -2003-01-06 Herman A.J. ten Brugge <hermantenbrugge@home.nl> +2003-01-06 Herman A.J. ten Brugge <hermantenbrugge@home.nl> * config/c4x/c4x.h: Remove hwint.h include and HOST_WIDE_INT_PRINT_HEX redefinition. diff --git a/gcc/config/h8300/h8300.c b/gcc/config/h8300/h8300.c index 8bc9bfc..0fa5403 100644 --- a/gcc/config/h8300/h8300.c +++ b/gcc/config/h8300/h8300.c @@ -502,7 +502,6 @@ pop (rn) void h8300_expand_prologue () { - int fsize = round_frame_size (get_frame_size ()); int regno; int saved_regs; int n_regs; @@ -526,7 +525,7 @@ h8300_expand_prologue () } /* Leave room for locals. */ - dosize (-1, fsize); + dosize (-1, round_frame_size (get_frame_size ())); /* Push the rest of the registers in ascending order. */ saved_regs = compute_saved_regs (); @@ -592,7 +591,6 @@ h8300_can_use_return_insn_p () void h8300_expand_epilogue () { - int fsize = round_frame_size (get_frame_size ()); int regno; int saved_regs; int n_regs; @@ -652,7 +650,7 @@ h8300_expand_epilogue () } /* Deallocate locals. */ - dosize (1, fsize); + dosize (1, round_frame_size (get_frame_size ())); /* Pop frame pointer if we had one. */ if (frame_pointer_needed) |