diff options
author | Philipp Thomas <pthomas@suse.de> | 2000-06-20 15:55:10 +0000 |
---|---|---|
committer | Jason Eckhardt <jle@gcc.gnu.org> | 2000-06-20 15:55:10 +0000 |
commit | 21b9069137d3a26069aa7fef10aedb94bfc3c657 (patch) | |
tree | 7ca2cb97be7b2e9264b5a846223fdd86ac70f41a /gcc | |
parent | b72801e28a38c16cfc83c49af2ce54e8aa4b9e6f (diff) | |
download | gcc-21b9069137d3a26069aa7fef10aedb94bfc3c657.zip gcc-21b9069137d3a26069aa7fef10aedb94bfc3c657.tar.gz gcc-21b9069137d3a26069aa7fef10aedb94bfc3c657.tar.bz2 |
pa.h (TARGET_SWITCHES): Require binutils 2.10 or later for PA 2.0.
2000-06-20 Philipp Thomas <pthomas@suse.de>
* config/pa/pa.h (TARGET_SWITCHES): Require binutils 2.10 or later
for PA 2.0.
From-SVN: r34618
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/pa/pa.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 85690c5..82026f5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-06-20 Philipp Thomas <pthomas@suse.de> + + * config/pa/pa.h(TARGET_SWITCHES): Require binutils 2.10 or later + for PA 2.0. + Mon Jun 19 23:26:40 2000 J"orn Rennecke <amylaar@cygnus.co.uk> * Take REG_INC notes into account. diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index af0ac4f..dc44c1c 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -173,7 +173,7 @@ extern int target_flags; {"nosnake", -(MASK_PA_11 | MASK_PA_20), "Generate PA1.0 code"}, \ {"pa-risc-1-0", -(MASK_PA_11 | MASK_PA_20), "Generate PA1.0 code"}, \ {"pa-risc-1-1", MASK_PA_11, "Generate PA1.1 code"}, \ - {"pa-risc-2-0", MASK_PA_20, "Generate PA2.0 code. This option requires gas snapshot 19990413 or later"}, \ + {"pa-risc-2-0", MASK_PA_20, "Generate PA2.0 code. This option requires binutils 2.10 or later"}, \ {"disable-fpregs", MASK_DISABLE_FPREGS, "Disable FP regs"}, \ {"no-disable-fpregs", -MASK_DISABLE_FPREGS, "Do not disable FP regs"},\ {"no-space-regs", MASK_NO_SPACE_REGS, "Disable space regs"}, \ |