(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
vector-3.c
       1  #define vector __attribute__((vector_size(16) ))
       2  vector float g(void)
       3  {
       4    float t = 1.0f;
       5    return (vector float){0.0, 0.0, t, 0.0};
       6  }
       7