[gcc]
[official-gcc.git] / libgcc / config / msp430 / floathisf.c
blob4b4c16c81adefffeeb8c53a543468f669dcc5e94
1 /* Public domain. */
2 typedef int HItype __attribute__ ((mode (HI)));
3 typedef float SFtype __attribute__ ((mode (SF)));
5 extern SFtype __floatsisf (unsigned long);
7 SFtype __floathisf (HItype);
9 SFtype
10 __floathisf (HItype u)
12 return __floatsisf ((unsigned long)u);