OSDN Git Service

Fix PR40886.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr41345.c
1 /* PR bootstrap/41345 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -g -fcompare-debug" } */
4
5 void
6 foo (int *x)
7 {
8   int a;
9   for (a = 0; a < 2; a++)
10     if (x[a])
11       goto lab;
12   __builtin_unreachable ();
13 lab:;
14 }