repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixes for host gcc 4.6.1
[zpugcc/jano.git]
/
toolchain
/
gcc
/
newlib
/
libm
/
common
/
s_fma.c
blob
86958afcb01e753ee19b34eadcc42614e529e7ab
1
#include
"fdlibm.h"
2
3
#ifndef _DOUBLE_IS_32BITS
4
5
#ifdef __STDC__
6
double
fma
(
double
x
,
double
y
,
double
z
)
7
#else
8
double
fma
(
x
,
y
)
9
double
x
;
10
double
y
;
11
double
z
;
12
#endif
13
{
14
/* Implementation defined. */
15
return
(
x
*
y
) +
z
;
16
}
17
18
#endif
/* _DOUBLE_IS_32BITS */