1 /* Test that qualifiers other than volatile are disallowed 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
11 asm const (""); /* { dg-error {'const' is not a valid 'asm' qualifier} } */
12
13 asm restrict (""); /* { dg-error {'restrict' is not a valid 'asm' qualifier} } */
14 }