Update ChangeLog and version files for release
[official-gcc.git] / libgcc / config / msp430 / floathidf.c
blob304731d518be87b91a99bae33e13d87a8810b438
1 /* Public domain. */
2 extern double __floatsidf (long);
4 double
5 __floathidf (int u)
7 return __floatsidf ((long)u);