(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
csky/
fpuv3/
fpv3_mul.c
       1  /* { dg-do compile } */
       2  /* { dg-skip-if  "test is specific to ck860f"  { csky-*-* }  { "*" }  { "-mcpu=ck860*f* -mfloat-abi=hard" "-mcpu=ck860*f* -mhard-float"  }  }  */
       3  /* { dg-options "" } */
       4  
       5  float mul32(float a, float b){
       6    return a*b;
       7  }
       8  
       9  double mul64(double a, double b){
      10    return a*b;
      11  }
      12  
      13  /* { dg-final { scan-assembler "fmul\.32" } }*/
      14  /* { dg-final { scan-assembler "fmul\.64" } }*/
      15