From 036182e73847c25fcdac8f6b0a8bc2784a92d629 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Fri, 19 May 2000 00:56:08 +0000 Subject: 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 --- gcc/ChangeLog | 5 +++++ gcc/config/mn10300/mn10300.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'gcc') diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d18f089..0912e02 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-05-18 Alexandre Oliva + + * config/mn10300/mn10300.c (expand_prologue, expand_epilogue): + 16-bit and 64-bit clean-up. + 2000-05-18 Mark Elbrecht * configure.in (*-pc-msdosdjgpp): Set float_format to none. 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; -- cgit v1.1