Commit 036182e7 by Alexandre Oliva Committed by Alexandre Oliva

mn10300.c (expand_prologue, [...]): 16-bit and 64-bit clean-up.

* config/mn10300/mn10300.c (expand_prologue, expand_epilogue):
16-bit and 64-bit clean-up.

From-SVN: r34007
parent 062edaed
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.
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment