Import pre-release gcc-5.0 to new vendor branch
[dragonfly.git] / contrib / gcc-5.0 / libgcc / config / msp430 / floathisf.c
1 /* Public domain.  */
2 typedef int HItype __attribute__ ((mode (HI)));
3 typedef float SFtype __attribute__ ((mode (SF)));
4
5 extern SFtype __floatsisf (unsigned long);
6
7 SFtype
8 __floathisf (HItype u)
9 {
10   return __floatsisf ((unsigned long)u);
11 }