diff options
author | Jim Wilson <wilson@tuliptree.org> | 2006-07-07 23:17:55 +0000 |
---|---|---|
committer | Jim Wilson <wilson@tuliptree.org> | 2006-07-07 23:17:55 +0000 |
commit | 1e85aad828bf40e0d13bc8b0f5cd88776ae06fd6 (patch) | |
tree | 71bc98cba6c2fa97f7943f3dcbcd6401d80bfbfc /gas | |
parent | 1dff4b6426c6eadfbb431772fe4a6b22767b17fd (diff) | |
download | binutils-gdb-1e85aad828bf40e0d13bc8b0f5cd88776ae06fd6.tar.gz |
Add Broadcom SB-1A support.
* config/tc-mips.c (mips_cpu_info_table): Add sb1a.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 5eb3491fd42..e3c02c8f77f 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2006-07-07 James E Wilson <wilson@specifix.com> + + * config/tc-mips.c (mips_cpu_info_table): Add sb1a. + 2006-07-06 Mohammed Adnène Trojette <adn@diwi.org> Nick Clifton <nickc@redhat.com> diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index a06bfec15d0..82c2cd22ed0 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -14632,6 +14632,9 @@ static const struct mips_cpu_info mips_cpu_info_table[] = /* Broadcom SB-1 CPU core */ { "sb1", MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX, ISA_MIPS64, CPU_SB1 }, + /* Broadcom SB-1A CPU core */ + { "sb1a", MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX, + ISA_MIPS64, CPU_SB1 }, /* End marker */ { NULL, 0, 0, 0 } |