OSDN Git Service

* gcc.dg/vect/vect-116.c: Add vect_int target requirement.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / 20000707-1.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -Wall" } */
3
4 extern void foo(void *here);
5 extern inline void bar(void)
6 {
7   __label__ here;
8   foo(&&here);
9 here:
10   ;
11 }
12
13 void baz(void)
14 {
15   bar();
16 }