Commit c2d09187 by Eric Botcazou Committed by Eric Botcazou

* reload1.c (choose_reload_regs): Add missing #ifdef/#endif pair.

From-SVN: r191596
parent 4f66c9bc
2012-09-20 Eric Botcazou <ebotcazou@adacore.com>
* reload1.c (choose_reload_regs): Add missing #ifdef/#endif pair.
2012-09-20 Bernd Schmidt <bernds@codesourcery.com>
PR bootstrap/54643
......
......@@ -6956,7 +6956,10 @@ choose_reload_regs (struct insn_chain *chain)
for (j = 0; j < n_reloads; j++)
{
int r = reload_order[j];
rtx check_reg, tem;
rtx check_reg;
#ifdef SECONDARY_MEMORY_NEEDED
rtx tem;
#endif
if (reload_inherited[r] && rld[r].reg_rtx)
check_reg = rld[r].reg_rtx;
else if (reload_override_in[r]
......
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