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
* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
991202-1.c
blob
cc4f478f52088ebd4f4f4a929439c1548bd4f8d5
1
extern
float
A
[],
B
[];
2
extern
float
MAXNUMF
;
3
float
chbevlf
(
float
,
float
*,
int
);
4
float
expf
(
float
),
i1f
(
float
),
logf
(
float
),
sqrtf
(
float
);
5
6
float
k1f
(
float
xx
)
7
{
8
float
x
,
y
;
9
10
x
=
xx
;
11
if
(
x
<=
2.0
)
12
{
13
y
=
x
*
x
-
2.0
;
14
y
=
logf
(
0.5
f
*
x
) *
i1f
(
x
) +
chbevlf
(
y
,
A
,
7
) /
x
;
15
return
(
y
);
16
}
17
return
(
expf
(-
x
) *
chbevlf
( (
float
)(
8.0
/
x
-
2.0
),
B
,
10
) /
sqrtf
(
x
) );
18
}