(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
sve/
acle/
general/
undef_1.c
       1  /* { dg-options "-O2 -W -Wall -Werror" } */
       2  
       3  #include <arm_sve.h>
       4  
       5  svfloat32x2_t
       6  foo (svfloat32_t x, svfloat32_t y)
       7  {
       8    svfloat32x2_t res = svundef2_f32 ();
       9    res = svset2 (res, 0, x);
      10    res = svset2 (res, 1, y);
      11    return res;
      12  }