Commit 7f5b7dce by Sebastian Pop Committed by Sebastian Pop

Add testcase for PR46168.

2011-01-18  Sebastian Pop  <sebastian.pop@amd.com>

	PR tree-optimization/46168
	* gcc.dg/graphite/pr46168.c: New.

From-SVN: r169255
parent d1523276
2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
PR tree-optimization/46168
* gcc.dg/graphite/pr46168.c: New.
2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
PR tree-optimization/43657
* gcc.dg/graphite/pr43657.c: New.
......
/* { dg-do compile } */
/* { dg-options "-O -ftree-loop-linear" } */
int
foo (int a[4096], int mi, int mj)
{
int i, j, i16;
for (i = 0; i < mi; i++)
{
i16 = i + 16;
for (j = 0; j < mj; j++)
i16 = a[j] == i16;
}
return i16;
}
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