alpha.c (alpha_start_function): Declare frame_size as unsigned to avoid signed/unsigned comparison warnings.

* config/alpha/alpha.c (alpha_start_function): Declare frame_size
	as unsigned to avoid signed/unsigned comparison warnings.

From-SVN: r66654
This commit is contained in:
Roger Sayle 2003-05-10 02:05:36 +00:00 committed by Roger Sayle
parent eddfe8258a
commit 3ee106652e
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2003-05-09 Roger Sayle <roger@eyesopen.com>
* config/alpha/alpha.c (alpha_start_function): Declare frame_size
as unsigned to avoid signed/unsigned comparison warnings.
2003-05-09 Bob Wilson <bob.wilson@acm.org>
* config/xtensa/xtensa.c (xtensa_emit_loop_end): Only use "nop.n"

View file

@ -7571,7 +7571,7 @@ alpha_start_function (file, fnname, decl)
/* Stack space needed for pushing registers clobbered by us. */
HOST_WIDE_INT sa_size;
/* Complete stack size needed. */
HOST_WIDE_INT frame_size;
unsigned HOST_WIDE_INT frame_size;
/* Offset from base reg to register save area. */
HOST_WIDE_INT reg_offset;
char *entry_label = (char *) alloca (strlen (fnname) + 6);