(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
vect-faddv.x
typedef float *__restrict__ pRF32;
typedef double *__restrict__ pRF64;

float addv_f32 (pRF32 a)
{
  int i;
  float s = 0.0;
  for (i=0; i<16; i++)
    s += a[i];

  return s;
}

double addv_f64 (pRF64 a)
{
  int i;
  double  s = 0.0;
  for (i=0; i<16; i++)
    s += a[i];

  return s;
}