(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
asm-qual-1.c
       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  }