diff options
| author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-19 00:56:08 +0000 |
|---|---|---|
| committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-19 00:56:08 +0000 |
| commit | e3f95b408cd63d396b96c3d630eeb707aa128ca4 (patch) | |
| tree | 691aab08642b803782b498937b5fd550c55a8426 | |
| parent | 2cf1cb6230cde8164162948c06599571f8810f82 (diff) | |
| download | ppe42-gcc-e3f95b408cd63d396b96c3d630eeb707aa128ca4.tar.gz ppe42-gcc-e3f95b408cd63d396b96c3d630eeb707aa128ca4.zip | |
* config/mn10300/mn10300.c (expand_prologue, expand_epilogue):
16-bit and 64-bit clean-up.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34007 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/mn10300/mn10300.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d18f08903ef..0912e02f55f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-05-18 Alexandre Oliva <aoliva@cygnus.com> + + * config/mn10300/mn10300.c (expand_prologue, expand_epilogue): + 16-bit and 64-bit clean-up. + 2000-05-18 Mark Elbrecht <snowball3@bigfoot.com> * configure.in (*-pc-msdosdjgpp): Set float_format to none. diff --git a/gcc/config/mn10300/mn10300.c b/gcc/config/mn10300/mn10300.c index f230f121f1c..8104a508e64 100644 --- a/gcc/config/mn10300/mn10300.c +++ b/gcc/config/mn10300/mn10300.c @@ -380,7 +380,7 @@ can_use_return_insn () void expand_prologue () { - unsigned int size; + HOST_WIDE_INT size; /* SIZE includes the fixed stack space needed for function calls. */ size = get_frame_size () + current_function_outgoing_args_size; @@ -421,7 +421,7 @@ expand_prologue () void expand_epilogue () { - unsigned int size; + HOST_WIDE_INT size; /* SIZE includes the fixed stack space needed for function calls. */ size = get_frame_size () + current_function_outgoing_args_size; |

