(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
pr99808.c
       1  /* PR target/99808 */
       2  /* PR target/99037 */
       3  /* { dg-do compile } */
       4  /* { dg-options "-Og -fweb -fno-forward-propagate -g" } */
       5  
       6  #include <arm_neon.h>
       7  
       8  float32x4_t
       9  foo (void)
      10  {
      11    float64x2_t arg2 = vcombine_f64 ((float64x1_t) 0ULL, (float64x1_t) 1ULL);
      12    return vcvt_high_f32_f64 ((float32x2_t) 1ULL, arg2);
      13  }
      14