(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arm/
lto/
pr65837_0.c
       1  /* { dg-lto-do run } */
       2  /* { dg-require-effective-target arm_neon_hw } */
       3  /* { dg-require-effective-target arm_neon_ok_no_float_abi } */
       4  /* { dg-lto-options {{-flto -mfpu=neon}} } */
       5  
       6  #include "arm_neon.h"
       7  
       8  float32x2_t a, b, c, e;
       9  
      10  int main()
      11  {
      12    e = vmls_lane_f32 (a, b, c, 0);
      13    return 0;
      14  }
      15