diff options
author | Richard Earnshaw <erich@gnu.org> | 1997-07-30 12:54:05 +0000 |
---|---|---|
committer | Richard Earnshaw <erich@gnu.org> | 1997-07-30 12:54:05 +0000 |
commit | 38fc909b9fdc79b189865116c50e824c56c61a2d (patch) | |
tree | ca92e64fc9fc759572cb97a4755c937efb0c078f | |
parent | 9ce17ab2cca78107722dec2c3158053715c4f4da (diff) | |
download | gcc-38fc909b9fdc79b189865116c50e824c56c61a2d.zip gcc-38fc909b9fdc79b189865116c50e824c56c61a2d.tar.gz gcc-38fc909b9fdc79b189865116c50e824c56c61a2d.tar.bz2 |
(CPP_SPEC): add %(subtarget_cpp_spec).
From-SVN: r14563
-rw-r--r-- | gcc/config/arm/arm.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index efbeba7..0cdd1e6 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -109,7 +109,9 @@ Unrecognized value in TARGET_CPU_DEFAULT. #define CPP_PREDEFINES "-Darm -Acpu(arm) -Amachine(arm)" #endif -#define CPP_SPEC "%(cpp_cpu_arch) %(cpp_apcs_pc) %(cpp_float) %(cpp_endian)" +#define CPP_SPEC "\ +%(cpp_cpu_arch) %(cpp_apcs_pc) %(cpp_float) \ +%(cpp_endian) %(subtarget_cpp_spec)" /* Set the architecture define -- if -march= is set, then it overrides the -mcpu= setting. */ @@ -228,9 +230,11 @@ Unrecognized value in TARGET_CPU_DEFAULT. { "cpp_float_default", CPP_FLOAT_DEFAULT_SPEC }, \ { "cpp_endian", CPP_ENDIAN_SPEC }, \ { "cpp_endian_default", CPP_ENDIAN_DEFAULT_SPEC }, \ + { "subtarget_cpp_spec", SUBTARGET_CPP_SPEC }, \ SUBTARGET_EXTRA_SPECS #define SUBTARGET_EXTRA_SPECS +#define SUBTARGET_CPP_SPEC "" /* Run-time Target Specification. */ |