floatunhisf.c 338 B

1234567891011121314
  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. extern SFtype __floatunsisf (unsigned long);
  6. SFtype __floatunhisf (UHItype);
  7. SFtype
  8. __floatunhisf (UHItype u)
  9. {
  10. return __floatunsisf ((unsigned long)u);
  11. }