// Test that qualifiers other than volatile are disallowed on asm.// { dg-do compile }// { dg-options "-std=gnu++98" }voidf(){asmvolatile("");asmconst("");// { dg-error {'const' is not an 'asm' qualifier} }asm__restrict("");// { dg-error {'__restrict' is not an 'asm' qualifier} }}