Commit 2b5987b5 by Matthew Gretton-Dann Committed by Jeff Law

* gcc/reload.c (subst_reloads): Fix DEBUG_RELOAD build issue.

From-SVN: r195719
parent b11976a7
2013-02-04 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
* gcc/reload.c (subst_reloads): Fix DEBUG_RELOAD build issue.
2013-02-04 Richard Biener <rguenther@suse.de>
PR tree-optimization/56188
......
......@@ -6313,14 +6313,14 @@ subst_reloads (rtx insn)
for (check_regno = 0; check_regno < max_regno; check_regno++)
{
#define CHECK_MODF(ARRAY) \
gcc_assert (!reg_equivs[check_regno].ARRAY \
gcc_assert (!(*reg_equivs)[check_regno].ARRAY \
|| !loc_mentioned_in_p (r->where, \
reg_equivs[check_regno).ARRAY)]
(*reg_equivs)[check_regno].ARRAY))
CHECK_MODF (equiv_constant);
CHECK_MODF (equiv_memory_loc);
CHECK_MODF (equiv_address);
CHECK_MODF (equiv_mem);
CHECK_MODF (constant);
CHECK_MODF (memory_loc);
CHECK_MODF (address);
CHECK_MODF (mem);
#undef CHECK_MODF
}
#endif /* DEBUG_RELOAD */
......
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