Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / asm-qual-1.c
blob5ec9a29a9108386334e5e6dc6c78f2e74a8d1222
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" } */
6 void
7 f (void)
9 asm volatile ("");
10 asm const (""); /* { dg-warning "const qualifier ignored on asm" } */
11 asm restrict (""); /* { dg-warning "restrict qualifier ignored on asm" } */