]> gcc.gnu.org Git - gcc.git/commitdiff
mn10300.c (expand_prologue, [...]): 16-bit and 64-bit clean-up.
authorAlexandre Oliva <aoliva@cygnus.com>
Fri, 19 May 2000 00:56:08 +0000 (00:56 +0000)
committerAlexandre Oliva <aoliva@gcc.gnu.org>
Fri, 19 May 2000 00:56:08 +0000 (00:56 +0000)
* config/mn10300/mn10300.c (expand_prologue, expand_epilogue):
16-bit and 64-bit clean-up.

From-SVN: r34007

gcc/ChangeLog
gcc/config/mn10300/mn10300.c

index d18f08903ef606b3863c515615261a76c95e0a9e..0912e02f55f2ab6225f5de5b30a69039c668189b 100644 (file)
@@ -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.
index f230f121f1ca94e0d77558cca54bbf37e62772c3..8104a508e64b13352816d77cf49a0c7c6a3ea4ed 100644 (file)
@@ -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;
This page took 3.904205 seconds and 5 git commands to generate.