gcc/libgcc/config/msp430/cmpd.c
DJ Delorie f6a83b4a9f MAINTAINERS: Add Nick Clifton and DJ Delorie as msp430 maintainers.
* 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
2013-09-12 13:52:41 -04:00

20 lines
240 B
C

/* Public domain. */
int
__mspabi_cmpf (float x, float y)
{
if (x < y)
return -1;
if (x > y)
return 1;
return 0;
}
int
__mspabi_cmpd (double x, double y)
{
if (x < y)
return -1;
if (x > y)
return 1;
return 0;
}