diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/no-asm-2.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/no-asm-2.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/no-asm-2.c b/gcc/testsuite/gcc.dg/no-asm-2.c new file mode 100644 index 000000000..3cd41141d --- /dev/null +++ b/gcc/testsuite/gcc.dg/no-asm-2.c @@ -0,0 +1,9 @@ +/* { dg-do compile } */ +/* { dg-options "-std=gnu89 -fno-asm" } */ + +/* Verify that these GNU extensions are not recognized as keywords + when using -fno-asm in GNU89 mode. */ + +int asm; /* { dg-bogus "before .asm." } */ +int inline; /* { dg-bogus "empty declaration" } */ +int typeof; /* { dg-bogus "before .typeof." } */ |