arm.c (arm_expand_prologue): Make args_to_push a HOST_WIDE_INT.

* config/arm/arm.c (arm_expand_prologue): Make args_to_push a
	HOST_WIDE_INT.

[[Split portion of a mixed commit.]]

From-SVN: r87459.2
This commit is contained in:
Paul Brook 2004-09-14 00:05:16 +00:00 committed by Paul Brook
parent b919325985
commit b9705a212d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-09-14 Paul Brook <paul@codesourcery.com>
* config/arm/arm.c (arm_expand_prologue): Make args_to_push a
HOST_WIDE_INT.
2004-09-13 Daniel Jacobowitz <dan@debian.org>
* fold-const.c (fold_checksum_tree): Ignore TYPE_CACHED_VALUES.

View File

@ -9941,7 +9941,7 @@ arm_expand_prologue (void)
int fp_offset = 0;
int saved_pretend_args = 0;
int saved_regs = 0;
unsigned int args_to_push;
unsigned HOST_WIDE_INT args_to_push;
arm_stack_offsets *offsets;
func_type = arm_current_func_type ();