Update ChangeLog and version files for release
[official-gcc.git] / libgcc / config / msp430 / floatunhidf.c
blobf13b55076929ba944623745b66bc168253888481
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)));
6 extern DFtype __floatunsidf (unsigned long);
8 DFtype
9 __floatunhidf (UHItype u)
11 return __floatunsidf ((unsigned long)u);