c++: Fix ICE with #embed/RAW_DATA_CST after list conversion [PR118671]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr107935.c
blob78175100f80e5ce1ca24a534df54fc8a13db6fc9
1 /* { dg-do compile } */
3 int *a, **b;
4 int main() {
5 int d = 0, *e = &d;
6 L:
7 *e = d;
8 if (a) {
9 int *g = e = *b;
10 if (!e)
11 __builtin_abort();
12 if (**b)
13 return 0;
14 *g = 1;
15 goto L;
17 return 0;