diff options
author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-02 17:06:24 +0000 |
---|---|---|
committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-02 17:06:24 +0000 |
commit | 6c4c2133048a3eafbcb6cc42557307e1b68afb54 (patch) | |
tree | e90210290d40d65cd9ed9dab8d4888ec1410a22a /gcc/config/arm/semi.h | |
parent | b21ba4419de17bec7700e7f5f62005c6328f9212 (diff) | |
download | gcc-6c4c2133048a3eafbcb6cc42557307e1b68afb54.tar.gz |
Fix compile time warnings
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30353 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/arm/semi.h')
-rw-r--r-- | gcc/config/arm/semi.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/config/arm/semi.h b/gcc/config/arm/semi.h index 346c61329b8..c19e857c687 100644 --- a/gcc/config/arm/semi.h +++ b/gcc/config/arm/semi.h @@ -30,11 +30,15 @@ Boston, MA 02111-1307, USA. */ #define LINK_SPEC "%{mbig-endian:-EB} -X" +#ifndef TARGET_VERSION #define TARGET_VERSION fputs (" (ARM/semi-hosted)", stderr); +#endif +#ifndef TARGET_DEFAULT #define TARGET_DEFAULT ARM_FLAG_APCS_32 +#endif #include "arm/aout.h" -#undef CPP_APCS_PC_DEFAULT_SPEC +#undef CPP_APCS_PC_DEFAULT_SPEC #define CPP_APCS_PC_DEFAULT_SPEC "-D__APCS_32__" |