blob: 9fbfc502d6b39bc4c8b313f095d5dd6b30239bbc [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -msse -mno-sse2" } */
typedef float v4sf __attribute__ ((__vector_size__ (16)));
void bench_1(float * out, float * in, float f, unsigned int n)
{
n /= 4;
v4sf scalar = { f, f, f, f };
do
{
v4sf arg = *(v4sf *)in;
v4sf result = arg + scalar;
*(v4sf *) out = result;
in += 4;
out += 4;
}
while (--n);
}
/* { dg-final { scan-assembler-not "addps\[^\\n\]*%\[er\]" } } */