Retro68/gcc/libgcc/config/msp430/floatunhisf.c
2014-09-21 19:33:12 +02:00

13 lines
305 B
C

/* Public domain. */
typedef int HItype __attribute__ ((mode (HI)));
typedef unsigned int UHItype __attribute__ ((mode (HI)));
typedef float SFtype __attribute__ ((mode (SF)));
extern SFtype __floatunsisf (unsigned long);
SFtype
__floatunhisf (UHItype u)
{
return __floatunsisf ((unsigned long)u);
}