Commit c86a3947 by Changpeng Fang Committed by Sebastian Pop

re PR tree-optimization/32824 (Missed reduction vectorizer after store to global is LIM'd)

Fix PR32824.

2010-04-06  Changpeng Fang  <changpeng.fang@amd.com>

	PR middle-end/32824
	* passes.c (init_optimization_passes): Move pass_lim before
	pass_copy_prop and pass_dce_loop.

	* gcc.dg/vect/pr32824: New.

From-SVN: r158018
parent f4d1d50a
2010-04-06 Changpeng Fang <changpeng.fang@amd.com>
PR middle-end/32824
* passes.c (init_optimization_passes): Move pass_lim before
pass_copy_prop and pass_dce_loop.
2010-04-06 Jakub Jelinek <jakub@redhat.com>
PR target/43667
......
......@@ -885,9 +885,9 @@ init_optimization_passes (void)
{
struct opt_pass **p = &pass_tree_loop.pass.sub;
NEXT_PASS (pass_tree_loop_init);
NEXT_PASS (pass_lim);
NEXT_PASS (pass_copy_prop);
NEXT_PASS (pass_dce_loop);
NEXT_PASS (pass_lim);
NEXT_PASS (pass_tree_unswitch);
NEXT_PASS (pass_scev_cprop);
NEXT_PASS (pass_record_bounds);
......
2010-04-06 Changpeng Fang <changpeng.fang@amd.com>
PR middle-end/32824
* gcc.dg/vect/pr32824: New.
2010-04-06 Tobias Burnus <burnus@net-b.de>
PR fortran/18918
......
/* { dg-do compile } */
/* { dg-require-effective-target vect_int } */
int a[16*100];
int e;
void foo(void)
{
int i;
for(i = 0;i<16*100;i++)
e += a[i];
}
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
/* { dg-final { cleanup-tree-dump "vect" } } */
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