Commit 3ee10665 by Roger Sayle Committed by Roger Sayle

alpha.c (alpha_start_function): Declare frame_size as unsigned to avoid…

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
parent eddfe825
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> 2003-05-09 Bob Wilson <bob.wilson@acm.org>
* config/xtensa/xtensa.c (xtensa_emit_loop_end): Only use "nop.n" * config/xtensa/xtensa.c (xtensa_emit_loop_end): Only use "nop.n"
......
...@@ -7571,7 +7571,7 @@ alpha_start_function (file, fnname, decl) ...@@ -7571,7 +7571,7 @@ alpha_start_function (file, fnname, decl)
/* Stack space needed for pushing registers clobbered by us. */ /* Stack space needed for pushing registers clobbered by us. */
HOST_WIDE_INT sa_size; HOST_WIDE_INT sa_size;
/* Complete stack size needed. */ /* Complete stack size needed. */
HOST_WIDE_INT frame_size; unsigned HOST_WIDE_INT frame_size;
/* Offset from base reg to register save area. */ /* Offset from base reg to register save area. */
HOST_WIDE_INT reg_offset; HOST_WIDE_INT reg_offset;
char *entry_label = (char *) alloca (strlen (fnname) + 6); char *entry_label = (char *) alloca (strlen (fnname) + 6);
......
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