diff options
author | Nick Clifton <nickc@gcc.gnu.org> | 1999-05-22 09:07:33 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 1999-05-22 09:07:33 +0000 |
commit | e2723c627666923b8380df962782858134b72db1 (patch) | |
tree | 999e6a7d493cbfcde3db8dbad9d1e0abaa3ba5cd | |
parent | c980b85bdc7dfa0fc6ffdc47bfef084441fcfb02 (diff) | |
download | gcc-e2723c627666923b8380df962782858134b72db1.zip gcc-e2723c627666923b8380df962782858134b72db1.tar.gz gcc-e2723c627666923b8380df962782858134b72db1.tar.bz2 |
Only defined NEED_PLT_GOT if it is not already defined.
From-SVN: r27097
-rw-r--r-- | gcc/config/arm/arm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index 0c6131b..e88bda9 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -480,7 +480,9 @@ extern int arm_is_6_or_7; /* Nonzero if PIC code requires explicit qualifiers to generate PLT and GOT relocs rather than the assembler doing so implicitly. Subtargets can override this if required. */ +#ifndef NEED_PLT_GOT #define NEED_PLT_GOT 0 +#endif /* Target machine storage Layout. */ |