OSDN Git Service

PR middle-end/34688
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20050122-1.c
1 /* From PR 19484.  */
2 extern void foo (void) __attribute__((noreturn));
3 int n;
4
5 void
6 g (void)
7 {
8   void (*f) (void) = foo;
9   if (n)
10     f ();
11   n = 1;
12 }