+2015-11-23 Aditya Kumar <aditya.k7@samsung.com>
+ Sebastian Pop <s.pop@samsung.com>
+
+ PR tree-optimization/68493
+ * graphite-isl-ast-to-gimple.c (translate_pending_phi_nodes): Add
+ missing early return when codegen_error is set.
+
2015-11-23 Aditya Kumar <aditya.k7@samsung.com>
Sebastian Pop <s.pop@samsung.com>
fprintf (dump_file, "[codegen] to new-phi: ");
print_gimple_stmt (dump_file, new_phi, 0, 0);
}
+ if (codegen_error)
+ return;
}
}
+2015-11-23 Aditya Kumar <aditya.k7@samsung.com>
+ Sebastian Pop <s.pop@samsung.com>
+
+ PR tree-optimization/68493
+ * gcc.dg/graphite/pr68493.c: New.
+
2015-11-23 Aditya Kumar <aditya.k7@samsung.com>
Sebastian Pop <s.pop@samsung.com>
PR tree-optimization/68279
- * testsuite/gfortran.dg/graphite/pr68279.f90: New.
+ * gfortran.dg/graphite/pr68279.f90: New.
2015-11-23 Marek Polacek <polacek@redhat.com>
--- /dev/null
+/* { dg-options "-O1 -floop-nest-optimize" } */
+
+int ce[2];
+int o5;
+int p7;
+
+int foo (void)
+{
+ int j1;
+ ce[0] = 0;
+ for (j1 = 0; j1 < 2; ++j1)
+ for (o5 = 1; o5 >= 0; --o5)
+ p7 += ce[o5];
+ return 0;
+}
+
+int du;
+
+int bar (void)
+{
+ int u7[2];
+ int ar;
+
+ for (ar = 0; ar < 2; ++ar) {
+ int xo;
+
+ for (xo = 0; xo < 2; ++xo) {
+ du += u7[ar];
+ u7[0] = 0;
+ }
+ }
+
+ return 0;
+}