Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / compile / 20050122-2.c
blobd73f6243ddd5147b8c461e9242dfa0b30d0b5a00
1 /* Related to PR 19484. */
2 extern void foo (void) __attribute__((noreturn));
3 int n;
5 void
6 g (void)
8 __label__ lab;
9 void h (void) { if (n == 2) goto lab; }
10 void (*f1) (void) = foo;
11 void (*f2) (void) = h;
13 f2 ();
14 if (n)
15 f1 ();
16 n = 1;
17 lab:
18 n++;