floatunhidf.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 DFtype __attribute__ ((mode (DF)));
  5. extern DFtype __floatunsidf (unsigned long);
  6. DFtype __floatunhidf (UHItype);
  7. DFtype
  8. __floatunhidf (UHItype u)
  9. {
  10. return __floatunsidf ((unsigned long)u);
  11. }