1 /* { dg-options "-O2 -fgraphite-identity -fprofile-generate" } */ 2 /* { dg-require-profiling "-fprofile-generate" } */ 3 4 int extend_options(int h,int map,int x,int y,int dx)5extend_options (int h, int map, int x, int y, int dx) 6 { 7 while (dx--) 8 { 9 if (x != dx && y != -x) 10 map++; 11 } 12 return map; 13 } 14