c++: Fix ICE with #embed/RAW_DATA_CST after list conversion [PR118671]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr103596.c
blob4f65c36d121470482d3a3ada11d607cada3b5b73
1 /* { dg-do compile } */
2 /* { dg-additional-options "--param case-values-threshold=1" } */
4 int n;
6 void
7 qux (int a)
11 int
12 baz (void)
14 return -1;
17 __attribute__ ((returns_twice)) int
18 bar (int b)
20 if (n != 0)
22 if (b != 2)
23 if (b != 0)
24 return n + b;
26 if (n == 2)
27 return 0;
31 void
32 foo (void)
34 qux (n);
35 bar (baz ());