IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / pr41345.c
blob4b146c0c202006627045ce60acfc51d3f0aaf30d
1 /* PR bootstrap/41345 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -g -fcompare-debug" } */
5 void
6 foo (int *x)
8 int a;
9 for (a = 0; a < 2; a++)
10 if (x[a])
11 goto lab;
12 __builtin_unreachable ();
13 lab:;