OSDN Git Service

Do not FAIL in miscompiled runtime tests.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / graphite / pr38073.c
1 /* { dg-options "-O3 -fgraphite-identity" } */
2
3 test_seg(int a, int b)
4 {
5   int i,r=1;
6   for(i=0; i<b ;i++)
7     r*=a;
8   return r;
9 }