(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
riscv/
xtheadcondmov.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-march=rv32gc_xtheadcondmov" { target { rv32 } } } */
       3  /* { dg-options "-march=rv64gc_xtheadcondmov" { target { rv64 } } } */
       4  
       5  #ifndef __riscv_xtheadcondmov
       6  #error Feature macro not defined
       7  #endif
       8  
       9  int
      10  foo (int a)
      11  {
      12    return a;
      13  }
      14