xref: /netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/msp430/floatunhisf.c (revision bdc22b2e01993381dcefeff2bc9b56ca75a4235c)
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)));
5 
6 extern SFtype __floatunsisf (unsigned long);
7 
8 SFtype
9 __floatunhisf (UHItype u)
10 {
11   return __floatunsisf ((unsigned long)u);
12 }
13