2016-10-26 Edward Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / libgcc / config / msp430 / floatunhisf.c
blob423627ab1cd0da73d2689383fd4a58be57bd599f
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 __floatunhisf (UHItype);
10 SFtype
11 __floatunhisf (UHItype u)
13 return __floatunsisf ((unsigned long)u);