(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
riscv/
rvv/
base/
riscv_vector.h
       1  /* Wrapper of riscv_vector.h, prevent riscv_vector.h including stdint.h from
       2     C library, that might cause problem on testing RV32 related testcase when
       3     we disable multilib.  */
       4  #ifndef _RISCV_VECTOR_WRAP_H
       5  
       6  #define _GCC_WRAP_STDINT_H
       7  #include "stdint-gcc.h"
       8  #include_next <riscv_vector.h>
       9  #define _RISCV_VECTOR_WRAP_H
      10  
      11  #endif