diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2010-11-10 18:00:42 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2010-11-10 18:00:42 +0000 |
commit | 95b53b576b7372dd13ab1115df13c2dc92b730b9 (patch) | |
tree | 52c5a5043fe9958613e9f83d864a99b50c7c89b9 /gcc | |
parent | bbed6555f082df6dc6a015f445e652cd32a63bf5 (diff) | |
download | gcc-95b53b576b7372dd13ab1115df13c2dc92b730b9.zip gcc-95b53b576b7372dd13ab1115df13c2dc92b730b9.tar.gz gcc-95b53b576b7372dd13ab1115df13c2dc92b730b9.tar.bz2 |
* config/alpha/osf5.h (ASM_SPEC): Remove -nocpp.
From-SVN: r166549
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/alpha/osf5.h | 7 |
2 files changed, 7 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 54da307..cad8716 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2010-11-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + * config/alpha/osf5.h (ASM_SPEC): Remove -nocpp. + 2010-11-10 Sebastian Pop <sebastian.pop@amd.com> PR tree-optimization/45971 diff --git a/gcc/config/alpha/osf5.h b/gcc/config/alpha/osf5.h index 759b4e7..4f639e2 100644 --- a/gcc/config/alpha/osf5.h +++ b/gcc/config/alpha/osf5.h @@ -127,12 +127,11 @@ along with GCC; see the file COPYING3. If not see it always means that we get slightly larger than necessary object files if the user does not specify -g. If we don't pass -g, then mips-tfile will need to be fixed to work in this case. Pass -O0 since some - optimization are broken and don't help us anyway. Pass -nocpp because - there's no point in running CPP on our assembler output. */ + optimization are broken and don't help us anyway. */ #if ((TARGET_DEFAULT | TARGET_CPU_DEFAULT) & MASK_GAS) != 0 -#define ASM_SPEC "%{malpha-as:-g " ASM_OLDAS_SPEC " -nocpp %{pg} -O0}" +#define ASM_SPEC "%{malpha-as:-g " ASM_OLDAS_SPEC " %{pg} -O0}" #else -#define ASM_SPEC "%{!mgas:-g " ASM_OLDAS_SPEC " -nocpp %{pg} -O0}" +#define ASM_SPEC "%{!mgas:-g " ASM_OLDAS_SPEC " %{pg} -O0}" #endif /* Specify to run a post-processor, mips-tfile after the assembler |