Commit 2d36b47f by Maxim Kuvyrkov Committed by Maxim Kuvyrkov

re PR rtl-optimization/48170 (ICE: in hoist_code, at gcse.c:4524 with -fgcse…

re PR rtl-optimization/48170 (ICE: in hoist_code, at gcse.c:4524 with -fgcse --param max-hoist-depth={0,1})

	PR rtl-optimization/48170
	* gcse.c (hoist_code): Remove bogus asserts.

From-SVN: r171155
parent 2a3d7659
2011-03-18 Maxim Kuvyrkov <maxim@codesourcery.com>
PR rtl-optimization/48170
* gcse.c (hoist_code): Remove bogus asserts.
2011-03-18 Georg-Johann Lay <avr@gjlay.de>
* ira-color.c (assign_hard_reg): Honor LOCAL_REGNO in cost
......
......@@ -4520,9 +4520,7 @@ hoist_code (void)
{
/* An occurence might've been already deleted
while processing a dominator of BB. */
if (occr->deleted_p)
gcc_assert (MAX_HOIST_DEPTH > 1);
else
if (!occr->deleted_p)
{
gcc_assert (NONDEBUG_INSN_P (occr->insn));
hoistable++;
......@@ -4554,10 +4552,7 @@ hoist_code (void)
/* An occurence might've been already deleted
while processing a dominator of BB. */
if (occr->deleted_p)
{
gcc_assert (MAX_HOIST_DEPTH > 1);
continue;
}
continue;
gcc_assert (NONDEBUG_INSN_P (occr->insn));
max_distance = expr->max_distance;
......
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