diff options
author | Ian Lance Taylor <ian@airs.com> | 2004-12-09 06:17:14 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2004-12-09 06:17:14 +0000 |
commit | 9a92f48d3b298cfa84b9b8debd5940b1be6846c0 (patch) | |
tree | ab12106a8ebb02e510f243aa1292b09295261190 /gas | |
parent | 98e7aba8e2d879efe0d87584d36548689708b6c5 (diff) | |
download | gdb-9a92f48d3b298cfa84b9b8debd5940b1be6846c0.zip gdb-9a92f48d3b298cfa84b9b8debd5940b1be6846c0.tar.gz gdb-9a92f48d3b298cfa84b9b8debd5940b1be6846c0.tar.bz2 |
* config/tc-mips.c (mips_cpu_info_table): Change "9000" entry to
use CPU_RM9000.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index e2f0195..43c36ad 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2004-12-09 Ian Lance Taylor <ian@wasabisystems.com> + + * config/tc-mips.c (mips_cpu_info_table): Change "9000" entry to + use CPU_RM9000. + 2004-12-07 Ben Elliston <bje@gnu.org> * read.c (s_align): Use an align_limit temporary to allay a GCC diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 1d0afe9..b8b23f1 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -13820,7 +13820,7 @@ static const struct mips_cpu_info mips_cpu_info_table[] = { "rm5261", 0, ISA_MIPS4, CPU_R5000 }, { "rm5721", 0, ISA_MIPS4, CPU_R5000 }, { "rm7000", 0, ISA_MIPS4, CPU_RM7000 }, - { "rm9000", 0, ISA_MIPS4, CPU_RM7000 }, + { "rm9000", 0, ISA_MIPS4, CPU_RM9000 }, /* MIPS 32 */ { "4kc", 0, ISA_MIPS32, CPU_MIPS32 }, |