LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / fast-math-pr43074.c
blobb3e9884e9ebfbf7cfae0e39526e6fc4645c5b7df
1 /* { dg-do compile } */
3 float
4 pvslockprocess(float *fout, float *fin, int framesize)
6 int i;
7 float mag=0.0f, diff;
8 for (i = 0; i < framesize; i += 2) {
9 mag += fin[i];
10 fout[i] = fin[i];
11 fout[i+1] = fin[i+1];
13 return mag;