Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20020807-1.c
blobc1cc81504e82affc292b9ccc25a4a38292ab58b2
1 int x;
3 static int
4 __attribute__ ((noinline))
5 foo (void)
7 return 0;
10 static void
11 __attribute__ ((noinline))
12 bar (void)
16 static inline void
17 baz (void)
19 char arr[x];
21 lab:
22 if (foo () == -1)
24 bar ();
25 goto lab;
29 void
30 test (void)
32 baz ();