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
LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git]
/
libgcc
/
config
/
msp430
/
floathidf.c
blob
a1144223c6ae2b63065cfff33be1b7e9cb901ca2
1
/* Public domain. */
2
extern
double
__floatsidf
(
long
);
3
4
double
__floathidf
(
int
);
5
6
double
7
__floathidf
(
int
u
)
8
{
9
return
__floatsidf
((
long
)
u
);
10
}