(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arm/
pr69194.c
       1  /* PR target/69194 */
       2  /* { dg-do-compile } */
       3  /* { dg-require-effective-target arm_neon_ok } */
       4  /* { dg-options "-O2" } */
       5  /* { dg-add-options arm_neon } */
       6  
       7  typedef __simd128_float32_t float32x4_t;
       8  
       9  float32x4_t
      10  sub (float32x4_t a, float32x4_t b, float32x4_t c, float32x4_t d, float32x4_t e)
      11  {
      12    return __builtin_neon_vld1v4sf((const float *)&e);
      13  }