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