PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930408-1.c
blob42ffc098f8007d011527d5b09890c7f277829832
1 typedef enum foo E;
2 enum foo { e0, e1 };
4 struct {
5 E eval;
6 } s;
8 p()
10 abort();
13 f()
15 switch (s.eval)
17 case e0:
18 p();
22 main()
24 s.eval = e1;
25 f();
26 exit(0);