aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/mn10300
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@cygnus.com>2000-05-19 00:56:08 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2000-05-19 00:56:08 +0000
commit036182e73847c25fcdac8f6b0a8bc2784a92d629 (patch)
tree691aab08642b803782b498937b5fd550c55a8426 /gcc/config/mn10300
parent062edaed2aba02add8b88f27823ed73a2dd0c2b6 (diff)
downloadgcc-036182e73847c25fcdac8f6b0a8bc2784a92d629.zip
gcc-036182e73847c25fcdac8f6b0a8bc2784a92d629.tar.gz
gcc-036182e73847c25fcdac8f6b0a8bc2784a92d629.tar.bz2
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
Diffstat (limited to 'gcc/config/mn10300')
-rw-r--r--gcc/config/mn10300/mn10300.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mn10300/mn10300.c b/gcc/config/mn10300/mn10300.c
index f230f12..8104a50 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;