(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
asm-flag-7.c
       1  /* Test error conditions of asm flag outputs.  */
       2  /* { dg-do compile } */
       3  /* { dg-options "" } */
       4  
       5  void test(void)
       6  {
       7    char x;
       8    asm("# %0" : "=@ccz"(x)); /* { dg-error "invalid use of asm flag output" } */
       9  }