Commit a4b8a65f by Richard Guenther Committed by Richard Biener

passes.c (init_optimization_passes): Exchange store-ccp with a ccp pass.

2008-08-19  Richard Guenther  <rguenther@suse.de>

	* passes.c (init_optimization_passes): Exchange store-ccp
	with a ccp pass.

	* gcc.dg/tree-ssa/ssa-ccp-14.c: XFAIL.

From-SVN: r139234
parent 21fe7edc
2008-08-19 Richard Guenther <rguenther@suse.de>
* passes.c (init_optimization_passes): Exchange store-ccp
with a ccp pass.
2008-08-19 Rafael Espindola <espindola@google.com>
* varasm.c (weak_decls): Move earlier in the file.
......
......@@ -640,7 +640,7 @@ init_optimization_passes (void)
NEXT_PASS (pass_forwprop);
NEXT_PASS (pass_phiopt);
NEXT_PASS (pass_object_sizes);
NEXT_PASS (pass_store_ccp);
NEXT_PASS (pass_ccp);
NEXT_PASS (pass_copy_prop);
NEXT_PASS (pass_fold_builtins);
NEXT_PASS (pass_cse_sincos);
......
2008-08-19 Richard Guenther <rguenther@suse.de>
* gcc.dg/tree-ssa/ssa-ccp-14.c: XFAIL.
2008-08-19 H.J. Lu <hongjiu.lu@intel.com>
PR target/37157
......
......@@ -17,5 +17,5 @@ void bar (void)
}
/* Everything except for the "i = 0" assignment should get removed. */
/* { dg-final { scan-tree-dump-times "if" 0 "optimized"} } */
/* { dg-final { scan-tree-dump-times "if" 0 "optimized" { xfail *-*-* } } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */
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