aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/recip-vec-sqrtf.c
blob: 6c0d49b2214fb13c8867fd30874fedcb28c88814 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* { dg-do compile } */
/* { dg-options "-O2 -ffast-math -ftree-vectorize -msse -mfpmath=sse -mrecip -fno-common" } */

float a[4];
float b[4];
float r[4];

extern float sqrtf (float);

void t1(void)
{
 int i;

 for (i = 0; i < 4; i++)
   r[i] = a[i] / sqrtf (b[i]);
}

void t2(void)
{
 int i;

 for (i = 0; i < 4; i++)
   r[i] = sqrtf (a[i] / b[i]);
}

void t3(void)
{
 int i;

 for (i = 0; i < 4; i++)
   r[i] = sqrtf (a[i]);
}

/* { dg-final { scan-assembler-times "rsqrtps" 3 } } */