f6a83b4a9f
* MAINTAINERS: Add Nick Clifton and DJ Delorie as msp430 maintainers. [gcc] * config/msp430/: New port. * config.gcc (msp430): Added. * doc/invoke.texi: Document MSP430 options. * doc/install.texi: Document msp430-elf * doc/md.texi: Document msp430-elf * doc/contrib.texi: Document msp430-elf [libgcc] * config.host (msp*-*-elf): New. * config/msp430/: New port. [contrib] * config-list.mk: Add msp430-elf. From-SVN: r202535
9 lines
120 B
C
9 lines
120 B
C
/* Public domain. */
|
|
extern double __floatsidf (long);
|
|
|
|
double
|
|
__floathidf (int u)
|
|
{
|
|
return __floatsidf ((long)u);
|
|
}
|