(root)/
gcc-13.2.0/
libgcc/
config/
msp430/
floathisf.c
       1  /* Public domain.  */
       2  typedef int HItype __attribute__ ((mode (HI)));
       3  typedef float SFtype __attribute__ ((mode (SF)));
       4  
       5  extern SFtype __floatsisf (unsigned long);
       6  
       7  SFtype __floathisf (HItype);
       8  
       9  SFtype
      10  __floathisf (HItype u)
      11  {
      12    return __floatsisf ((unsigned long)u);
      13  }