aarch64: Fix sve/acle/general/ldff1_8.c failures
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / fast-math-pr43074.c
blob88298067304cd9b7d7b0c721fe44b9c9914bd0a9
1 /* { dg-do compile } */
2 /* { dg-additional-options "-ffast-math" } */
4 float
5 pvslockprocess(float *fout, float *fin, int framesize)
7 int i;
8 float mag=0.0f, diff;
9 for (i = 0; i < framesize; i += 2) {
10 mag += fin[i];
11 fout[i] = fin[i];
12 fout[i+1] = fin[i+1];
14 return mag;