From 2d36b47ff5a2252001e3950fadd74797caee6ef4 Mon Sep 17 00:00:00 2001 From: Maxim Kuvyrkov Date: Fri, 18 Mar 2011 17:12:19 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/gcse.c | 9 ++------- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 200cce84e61..74b346492d5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-03-18 Maxim Kuvyrkov + + PR rtl-optimization/48170 + * gcse.c (hoist_code): Remove bogus asserts. + 2011-03-18 Georg-Johann Lay * ira-color.c (assign_hard_reg): Honor LOCAL_REGNO in cost diff --git a/gcc/gcse.c b/gcc/gcse.c index 27f7e8fe034..c010d86491a 100644 --- a/gcc/gcse.c +++ b/gcc/gcse.c @@ -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; -- 2.30.2