Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/libgcc/config/msp430/floatunhisf.c
2023-03-06 14:48:14 +01:00

15 lines
338 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);
SFtype
__floatunhisf (UHItype u)
{
return __floatunsisf ((unsigned long)u);
}