repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
fast-math-vect-pr25911.c
blob
633382f5b787faa2094ecd908ec1f0a981be18cb
1
/* { dg-do compile } */
2
3
float
bessel_Kn_scaled_small_x
(
int
n
)
4
{
5
int
k
;
6
float
k_term
,
sum1
;
7
for
(
k
=
1
;
k
<=
n
-
1
;
k
++)
8
{
9
k_term
*= -
1
/(
k
* (
n
-
k
));
10
sum1
+=
k_term
;
11
}
12
return
sum1
;
13
}
14
15
/* { dg-final { cleanup-tree-dump "vect" } } */