Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / vect-faddv.x
blobd99ab215639a9fb75f5b8058885f0dce87bea0f4
2 typedef float *__restrict__ pRF32;
3 typedef double *__restrict__ pRF64;
5 float addv_f32 (pRF32 a)
7   int i;
8   float s = 0.0;
9   for (i=0; i<16; i++)
10     s += a[i];
12   return s;
15 double addv_f64 (pRF64 a)
17   int i;
18   double  s = 0.0;
19   for (i=0; i<16; i++)
20     s += a[i];
22   return s;