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
13 lines
305 B
C
13 lines
305 B
C
/* Public domain. */
|
|
typedef int HItype __attribute__ ((mode (HI)));
|
|
typedef unsigned int UHItype __attribute__ ((mode (HI)));
|
|
typedef float DFtype __attribute__ ((mode (DF)));
|
|
|
|
extern DFtype __floatunsidf (unsigned long);
|
|
|
|
DFtype
|
|
__floatunhidf (UHItype u)
|
|
{
|
|
return __floatunsidf ((unsigned long)u);
|
|
}
|