libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr83685.c
blob062f75d23e997e7a78b6a2a0df116488a6c7a7ab
1 /* { dg-do compile } */
3 int _setjmp (void *);
4 void foo (int);
6 void
7 bar (int e, int b, char c, void *d)
9 while (b)
11 if (_setjmp (d))
12 foo (e);
13 if (c)
15 e--;
16 foo (0);
18 e++;