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