Update ChangeLog and version files for release
[official-gcc.git] / libgcc / config / msp430 / floatunhisf.c
blobea920bd853aa4acdd52a4f88efd5e8a619d4b8d9
1 /* Public domain. */
2 typedef int HItype __attribute__ ((mode (HI)));
3 typedef unsigned int UHItype __attribute__ ((mode (HI)));
4 typedef float SFtype __attribute__ ((mode (SF)));
6 extern SFtype __floatunsisf (unsigned long);
8 SFtype
9 __floatunhisf (UHItype u)
11 return __floatunsisf ((unsigned long)u);