OSDN Git Service

2010-05-09 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / asm-qual-1.c
1 /* Test that qualifiers other than volatile are ignored on asm.  */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-do compile } */
4 /* { dg-options "-std=gnu99" } */
5
6 void
7 f (void)
8 {
9   asm volatile ("");
10   asm const (""); /* { dg-warning "const qualifier ignored on asm" } */
11   asm restrict (""); /* { dg-warning "restrict qualifier ignored on asm" } */
12 }