repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merged with mainline at revision 128810.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
recip-vec-divf.c
blob
4bdbba79f34204b08bd47099eba94f1764a1f673
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -ffast-math -ftree-vectorize -msse -mfpmath=sse -mrecip" } */
3
4
float
a
[
16
];
5
float
b
[
16
];
6
float
r
[
16
];
7
8
void
t1
(
void
)
9
{
10
int
i
;
11
12
for
(
i
=
0
;
i
<
16
;
i
++)
13
r
[
i
] =
a
[
i
] /
b
[
i
];
14
}
15
16
/* { dg-final { scan-assembler "rcpps" } } */