rtems-elf.h (SUBTARGET_EXTRA_ASM_SPEC): Let !-mhard-float !-msoft-float imply -mfpu=softfpa.

2005-02-07  Ralf Corsepius  <ralf.corsepius@rtems.org>

	* config/arm/rtems-elf.h (SUBTARGET_EXTRA_ASM_SPEC):
	Let !-mhard-float !-msoft-float imply -mfpu=softfpa.

From-SVN: r94693
This commit is contained in:
Ralf Corsepius 2005-02-07 07:00:02 +01:00 committed by Ralf Corsepius
parent b1a224073e
commit 888b0310a6
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-02-07 Ralf Corsepius <ralf.corsepius@rtems.org>
* config/arm/rtems-elf.h (SUBTARGET_EXTRA_ASM_SPEC):
Let !-mhard-float !-msoft-float imply -mfpu=softfpa.
2005-02-06 Roger Sayle <roger@eyesopen.com>
PR rtl-optimization/19800

View File

@ -29,3 +29,11 @@
builtin_define ("__rtems__"); \
builtin_assert ("system=rtems"); \
} while (0)
/*
* The default in gcc now is soft-float, but gcc misses it to
* pass it to the assembler.
*/
#undef SUBTARGET_EXTRA_ASM_SPEC
#define SUBTARGET_EXTRA_ASM_SPEC "\
%{!mhard-float: %{!msoft-float:-mfpu=softfpa}}"