OSDN Git Service

2009-11-28 Kai Tietz <kai.tietz@onevision.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / no-asm-4.c
1 /* { dg-do compile } */
2 /* { dg-options "-std=gnu99 -fno-asm" } */
3
4 /* Verify that the GNU extensions asm and typeof are not recognized as
5    keywords when using -fno-asm in GNU89 mode, but that inline (which
6    is a keyword in C99 but not C89) is recognized.  */
7
8 int asm;        /* { dg-bogus "before .asm." } */
9 int inline;     /* { dg-warning "empty declaration" } */
10 /* { dg-error "empty declaration" "" { target *-*-* } 9 } */
11 int typeof;     /* { dg-bogus "before .typeof." } */