PR tree-optimization/84740
[official-gcc.git] / gcc / testsuite / gcc.dg / graphite / pr38073.c
bloba68b9e2aca6878afae426b68021a209eacd856ff
1 /* { dg-options "-O3 -fgraphite-identity" } */
3 int
4 test_seg(int a, int b)
6 int i,r=1;
7 for(i=0; i<b ;i++)
8 r*=a;
9 return r;