aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/pr38824.c
blob: 9fbfc502d6b39bc4c8b313f095d5dd6b30239bbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { 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\]" } } */