From: Jakub Jelinek Date: Tue, 2 Apr 2013 18:29:18 +0000 (+0200) Subject: re PR rtl-optimization/56745 (ICE in merge_if_block) X-Git-Tag: releases/gcc-4.9.0~6716 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=09bb4c99b03944e4910975593a80dcf1545886ff;p=thirdparty%2Fgcc.git re PR rtl-optimization/56745 (ICE in merge_if_block) PR rtl-optimization/56745 * ifcvt.c (cond_exec_find_if_block): Don't try to optimize if then_bb has no successors and else_bb is EXIT_BLOCK_PTR. * gcc.c-torture/compile/pr56745.c: New test. From-SVN: r197371 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 81321f67f9fd..3368116c8d71 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2013-04-02 Jakub Jelinek + PR rtl-optimization/56745 + * ifcvt.c (cond_exec_find_if_block): Don't try to optimize + if then_bb has no successors and else_bb is EXIT_BLOCK_PTR. + PR c++/34949 * tree-ssa-alias.c (stmt_kills_ref_p_1): If base != ref->base and both of them are MEM_REFs, just compare first argument for diff --git a/gcc/ifcvt.c b/gcc/ifcvt.c index f081ecd33534..faea882cefad 100644 --- a/gcc/ifcvt.c +++ b/gcc/ifcvt.c @@ -3473,7 +3473,7 @@ cond_exec_find_if_block (struct ce_if_block * ce_info) code processing. ??? we should fix this in the future. */ if (EDGE_COUNT (then_bb->succs) == 0) { - if (single_pred_p (else_bb)) + if (single_pred_p (else_bb) && else_bb != EXIT_BLOCK_PTR) { rtx last_insn = BB_END (then_bb); diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 63dc3e02a1f2..6f120f28c0bc 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,4 +1,9 @@ -2013-04-02 Pitchumani Sivanupandi +2013-04-02 Jakub Jelinek + + PR rtl-optimization/56745 + * gcc.c-torture/compile/pr56745.c: New test. + +2013-04-02 Pitchumani Sivanupandi * gcc.dg/tree-ssa/sra-13.c: Fix for 16 bit int. diff --git a/gcc/testsuite/gcc.c-torture/compile/pr56745.c b/gcc/testsuite/gcc.c-torture/compile/pr56745.c new file mode 100644 index 000000000000..ee9ba051fec8 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/pr56745.c @@ -0,0 +1,15 @@ +/* PR rtl-optimization/56745 */ + +unsigned char a[6]; + +void +foo () +{ + int i; + for (i = 5; i >= 0; i++) + { + if (++a[i] != 0) + break; + ++a[i]; + } +}