Commit 67730e23 by Ian Lance Taylor Committed by Ian Lance Taylor

reload1.c (verify_initial_elim_offsets): Add braces to avoid having a…

reload1.c (verify_initial_elim_offsets): Add braces to avoid having a declaration after a statement.

	* reload1.c (verify_initial_elim_offsets): Add braces to avoid
	having a declaration after a statement.

From-SVN: r100187
parent 55bea00a
2005-05-26 Ian Lance Taylor <ian@airs.com>
* reload1.c (verify_initial_elim_offsets): Add braces to avoid
having a declaration after a statement.
2005-05-26 Richard Sandiford <rsandifo@redhat.com> 2005-05-26 Richard Sandiford <rsandifo@redhat.com>
* opt-functions.awk (var_type): New function. * opt-functions.awk (var_type): New function.
......
...@@ -3315,14 +3315,16 @@ verify_initial_elim_offsets (void) ...@@ -3315,14 +3315,16 @@ verify_initial_elim_offsets (void)
return true; return true;
#ifdef ELIMINABLE_REGS #ifdef ELIMINABLE_REGS
struct elim_table *ep; {
struct elim_table *ep;
for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
{ for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
INITIAL_ELIMINATION_OFFSET (ep->from, ep->to, t); {
if (t != ep->initial_offset) INITIAL_ELIMINATION_OFFSET (ep->from, ep->to, t);
return false; if (t != ep->initial_offset)
} return false;
}
}
#else #else
INITIAL_FRAME_POINTER_OFFSET (t); INITIAL_FRAME_POINTER_OFFSET (t);
if (t != reg_eliminate[0].initial_offset) if (t != reg_eliminate[0].initial_offset)
......
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