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
aarch64: Fix sve/acle/general/ldff1_8.c failures
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
no-math-errno-vect-pow-1.c
blob
9794de78f2b9017a69df8d4210c4d2818e247a5c
1
/* { dg-do compile } */
2
/* { dg-require-effective-target vect_double } */
3
/* { dg-additional-options "-fno-math-errno" } */
4
5
double
x
[
256
];
6
7
void
foo
(
void
)
8
{
9
int
i
;
10
for
(
i
=
0
;
i
<
256
; ++
i
)
11
x
[
i
] =
__builtin_pow
(
x
[
i
],
0.5
);
12
}
13
14
/* { dg-final { scan-tree-dump "pattern recognized" "vect" } } */