mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-25 08:20:38 +08:00
* gcc/reload.c (subst_reloads): Fix DEBUG_RELOAD build issue.
From-SVN: r195719
This commit is contained in:
parent
b11976a700
commit
2b5987b550
@ -1,3 +1,7 @@
|
||||
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
|
||||
|
12
gcc/reload.c
12
gcc/reload.c
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user