+2015-07-23 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/66945
+ * tree-ssa-propagate.c (substitute_and_fold_dom_walker
+ ::before_dom_children): Force the propagators idea of
+ non-executable edges to materialize, not what the folder
+ chooses.
+
2015-07-23 Richard Biener <rguenther@suse.de>
* gimple.h (gimple_cond_make_false): Use 0 != 0.
+2015-07-23 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/66945
+ * gcc.dg/torture/pr66945.c: New testcase.
+
2015-07-22 Uros Bizjak <ubizjak@gmail.com>
PR target/66954
/* If we made a replacement, fold the statement. */
if (did_replace)
- fold_stmt (&i, follow_single_use_edges);
+ {
+ fold_stmt (&i, follow_single_use_edges);
+ stmt = gsi_stmt (i);
+ }
+
+ /* If this is a control statement the propagator left edges
+ unexecuted on force the condition in a way consistent with
+ that. See PR66945 for cases where the propagator can end
+ up with a different idea of a taken edge than folding
+ (once undefined behavior is involved). */
+ if (gimple_code (stmt) == GIMPLE_COND)
+ {
+ if ((EDGE_SUCC (bb, 0)->flags & EDGE_EXECUTABLE)
+ ^ (EDGE_SUCC (bb, 1)->flags & EDGE_EXECUTABLE))
+ {
+ if (((EDGE_SUCC (bb, 0)->flags & EDGE_TRUE_VALUE) != 0)
+ == ((EDGE_SUCC (bb, 0)->flags & EDGE_EXECUTABLE) != 0))
+ gimple_cond_make_true (as_a <gcond *> (stmt));
+ else
+ gimple_cond_make_false (as_a <gcond *> (stmt));
+ did_replace = true;
+ }
+ }
/* Now cleanup. */
if (did_replace)
{
- stmt = gsi_stmt (i);
-
/* If we cleaned up EH information from the statement,
remove EH edges. */
if (maybe_clean_or_replace_eh_stmt (old_stmt, stmt))