From: Richard Guenther Date: Thu, 28 Aug 2008 15:26:13 +0000 (+0000) Subject: re PR tree-optimization/37207 (ice at tree-ssa-ifcombine.c:222 for -Os) X-Git-Tag: releases/gcc-4.4.0~2837 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=99781d25b63399b931f4392e7cea7fb50be66484;p=thirdparty%2Fgcc.git re PR tree-optimization/37207 (ice at tree-ssa-ifcombine.c:222 for -Os) 2008-08-28 Richard Guenther PR tree-optimization/37207 * tree-ssa-ifcombine.c (recognize_single_bit_test): Fix tuplification bug. * gcc.c-torture/compile/pr37207.c: New testcase. From-SVN: r139714 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4af737ee94c6..2759095adbf9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2008-08-28 Richard Guenther + + PR tree-optimization/37207 + * tree-ssa-ifcombine.c (recognize_single_bit_test): Fix + tuplification bug. + 2008-08-28 Dodji Seketeli PR c++/36741 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 96b49b61aead..4befcbb5dbec 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2008-08-28 Richard Guenther + + PR tree-optimization/37207 + * gcc.c-torture/compile/pr37207.c: New testcase. + 2008-08-28 Janus Weil PR fortran/37253 diff --git a/gcc/testsuite/gcc.c-torture/compile/pr37207.c b/gcc/testsuite/gcc.c-torture/compile/pr37207.c new file mode 100644 index 000000000000..72333d26f6c9 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/pr37207.c @@ -0,0 +1,21 @@ +void +func_18 ( int t ) +{ + unsigned l_889; + int l_895 = 1; + for (0; 1; ++l_889) + { + int t1 = 0; + if (func_81 (1)) + { + int rhs = l_895; + if (rhs == 0) + rhs = 1; + if (1 & (t % rhs)) + t1 = 1; + } + func_98 (t1); + l_895 = 0; + } +} + diff --git a/gcc/tree-ssa-ifcombine.c b/gcc/tree-ssa-ifcombine.c index 143608e28eb7..a4a74ee6be40 100644 --- a/gcc/tree-ssa-ifcombine.c +++ b/gcc/tree-ssa-ifcombine.c @@ -212,7 +212,7 @@ recognize_single_bit_test (gimple cond, tree *name, tree *bit) stmt = SSA_NAME_DEF_STMT (orig_name); while (is_gimple_assign (stmt) - && (gimple_assign_copy_p (stmt) + && (gimple_assign_ssa_name_copy_p (stmt) || (gimple_assign_cast_p (stmt) && integral_operand_p (gimple_assign_lhs (stmt)) && integral_operand_p (gimple_assign_rhs1 (stmt))