Commit 89ceba31 by John David Anglin Committed by John David Anglin

ira.c (setup_eliminable_regset): Only declare i if ELIMINABLE_REGS is defined.

	* ira.c (setup_eliminable_regset): Only declare i if ELIMINABLE_REGS is
	defined.

From-SVN: r139869
parent ba623ced
2008-09-01 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
* ira.c (setup_eliminable_regset): Only declare i if ELIMINABLE_REGS is
defined.
2008-09-01 Jan Hubicka <jh@suse.cz>
* predict.c (maybe_hot_count_p, maybe_hot_edge_p): When profile is
......
......@@ -1258,7 +1258,6 @@ compute_regs_asm_clobbered (char *regs_asm_clobbered)
static void
setup_eliminable_regset (void)
{
int i;
/* Like regs_ever_live, but 1 if a reg is set or clobbered from an
asm. Unlike regs_ever_live, elements of this array corresponding
to eliminable regs (like the frame pointer) are set if an asm
......@@ -1266,6 +1265,7 @@ setup_eliminable_regset (void)
char *regs_asm_clobbered
= (char *) alloca (FIRST_PSEUDO_REGISTER * sizeof (char));
#ifdef ELIMINABLE_REGS
int i;
static const struct {const int from, to; } eliminables[] = ELIMINABLE_REGS;
#endif
/* FIXME: If EXIT_IGNORE_STACK is set, we will not save and restore
......
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