diff options
author | David Edelsohn <edelsohn@gnu.org> | 2005-06-27 17:17:16 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2005-06-27 13:17:16 -0400 |
commit | b0bfee6eb4b3363ca97d83bb590d7ac5cf8098d7 (patch) | |
tree | 947cd68b7e4b75416cc91f3ee74f4a7817fe537d /gcc/config/rs6000/rs6000.h | |
parent | ec5537cc331492bb5a4a76828d6d02808579dc31 (diff) | |
download | gcc-b0bfee6eb4b3363ca97d83bb590d7ac5cf8098d7.tar.gz |
rs6000.c (rs6000_file_start): Note PPC405 erratum in verbose_asm output.
* config/rs6000/rs6000.c (rs6000_file_start): Note PPC405 erratum
in verbose_asm output.
* config/rs6000/rs6000.h (PPC405_ERRATUM77): Bracket with
CONFIG_PPC405CR.
* config.gcc (powerpc with_which): Define CONFIG_PPC405CR for
405cr.
From-SVN: r101356
Diffstat (limited to 'gcc/config/rs6000/rs6000.h')
-rw-r--r-- | gcc/config/rs6000/rs6000.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h index 85ea2eadc67..fa7340f393f 100644 --- a/gcc/config/rs6000/rs6000.h +++ b/gcc/config/rs6000/rs6000.h @@ -50,8 +50,7 @@ #endif /* If configured for PPC405, support PPC405CR Erratum77. */ -#define PPC405_CPU_DEFAULT ("405") -#if #TARGET_CPU_DEFAULT == #PPC405_CPU_DEFAULT +#ifdef CONFIG_PPC405CR #define PPC405_ERRATUM77 (rs6000_cpu == PROCESSOR_PPC405) #else #define PPC405_ERRATUM77 0 |