Commit b75d95c9 by Sebastian Pop Committed by Sebastian Pop

Add testcase from PR43065.

2010-03-04  Sebastian Pop  <sebastian.pop@amd.com>

	PR middle-end/43065
	* gcc.dg/graphite/run-id-3.c: New.

From-SVN: r157288
parent 73102986
2010-03-04 Sebastian Pop <sebastian.pop@amd.com>
PR middle-end/43065
* gcc.dg/graphite/run-id-3.c: New.
2010-03-05 Tobias Grosser <grosser@fim.uni-passau.de>
Ramakrishna Upadrasta <Ramakrishna.Upadrasta@inria.fr>
......
extern void abort (void);
__attribute__ ((noinline)) int
foo (int *zzz, unsigned int kk)
{
int a, b, d;
a = b = 0;
for (d = 0; d < 1000; d++)
{
if (kk != 0)
b = *zzz;
}
return b;
}
int
main (void)
{
if (foo (0, 0) != 0)
abort();
return 0;
}
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