Commit 06d1ff90 by Richard Biener Committed by Richard Biener

re PR tree-optimization/78076 (Conditional jump or move depends on uninitialised…

re PR tree-optimization/78076 (Conditional jump or move depends on uninitialised value @ tree-vect-loop.c:2307)

2016-10-24  Richard Biener  <rguenther@suse.de>

	PR tree-optimization/78076
	* tree-ssa-loop-split.c (tree_ssa_split_loops): Reset aux
	also on the loop tree root.

From-SVN: r241467
parent ed9760d2
2016-10-24 Richard Biener <rguenther@suse.de>
PR tree-optimization/78076
* tree-ssa-loop-split.c (tree_ssa_split_loops): Reset aux
also on the loop tree root.
2016-10-24 Jakub Jelinek <jakub@redhat.com>
* config/i386/i386.c (ix86_fold_builtin): Handle
......
......@@ -592,7 +592,7 @@ tree_ssa_split_loops (void)
bool changed = false;
gcc_assert (scev_initialized_p ());
FOR_EACH_LOOP (loop, 0)
FOR_EACH_LOOP (loop, LI_INCLUDE_ROOT)
loop->aux = NULL;
/* Go through all loops starting from innermost. */
......@@ -631,7 +631,7 @@ tree_ssa_split_loops (void)
}
}
FOR_EACH_LOOP (loop, 0)
FOR_EACH_LOOP (loop, LI_INCLUDE_ROOT)
loop->aux = NULL;
if (changed)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment