* arm/unknown-elf.h (CPP_PREDEFINES): Add a suitable default.

From-SVN: r48044
This commit is contained in:
Richard Earnshaw 2001-12-15 16:46:57 +00:00 committed by Richard Earnshaw
parent 22c56562fe
commit 7b07d80884
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-12-15 Richard Earnshaw <rearnsha@arm.com>
* arm/unknown-elf.h (CPP_PREDEFINES): Add a suitable default.
2001-12-15 Ulrich Weigand <uweigand@de.ibm.com>
* regrename.c (copyprop_hardreg_forward): Do not keep register

View File

@ -24,7 +24,7 @@ Boston, MA 02111-1307, USA. */
/* Run-time Target Specification. */
#ifndef TARGET_VERSION
#define TARGET_VERSION fputs (" (ARM/ELF non-Linux)", stderr);
#define TARGET_VERSION fputs (" (ARM/ELF)", stderr);
#endif
/* Default to using APCS-32 and software floating point. */
@ -86,6 +86,10 @@ Boston, MA 02111-1307, USA. */
} \
while (0)
#ifndef CPP_PREDEFINES
#define CPP_PREDEFINES "-D__ELF__"
#endif
#ifndef CPP_APCS_PC_DEFAULT_SPEC
#define CPP_APCS_PC_DEFAULT_SPEC "-D__APCS_32__"
#endif