2008-03-31 Andrew Pinski <pinskia@gmail.com>
PR tree-opt/35431
* tree-ssa-phiopt.c (conditional_replacement): Return early for
complex types.
2008-03-31 Andrew Pinski <pinskia@gmail.com>
PR tree-opt/35431
* gcc.c-torture/compile/pr35431.c: New testcase.
From-SVN: r133749
+2008-03-31 Andrew Pinski <pinskia@gmail.com>
+
+ PR tree-opt/35431
+ * tree-ssa-phiopt.c (conditional_replacement): Return early for
+ complex types.
+
2008-03-31 Jan Beulich <jbeulich@novell.com>
* config/ia64/constraints.md: Add 'j' constraint.
+2008-03-31 Andrew Pinski <pinskia@gmail.com>
+
+ PR tree-opt/35431
+ * gcc.c-torture/compile/pr35431.c: New testcase.
+
2008-03-30 Kaz Kojima <kkojima@gcc.gnu.org>
* g++.dg/other/error27.C: Use -fno-finite-math-only on sh*
--- /dev/null
+void bar();
+
+void foo(int i)
+{
+ __complex__ int k = 0;
+
+ if (i)
+ k = 1;
+
+ for (i = 0; i < 1; ++i)
+ ;
+
+ if (k)
+ bar();
+}
tree new_var = NULL;
tree new_var1;
+ /* FIXME: Gimplification of complex type is too hard for now. */
+ if (TREE_CODE (TREE_TYPE (arg0)) == COMPLEX_TYPE
+ || TREE_CODE (TREE_TYPE (arg1)) == COMPLEX_TYPE)
+ return false;
+
/* The PHI arguments have the constants 0 and 1, then convert
it to the conditional. */
if ((integer_zerop (arg0) && integer_onep (arg1))