2016-12-21 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr58978.c
blob721801da16bc6d542d6493310ddb32c73e5df114
1 /* PR tree-optimization/58978 */
3 int
4 foo (int x)
6 switch (x)
8 case 0:
9 case 1:
10 case 9:
11 break;
12 default:
13 __builtin_unreachable ();
15 return x;