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/config/tc-mips.c | |
parent | 1dff4b6426c6eadfbb431772fe4a6b22767b17fd (diff) | |
download | gdb-1e85aad828bf40e0d13bc8b0f5cd88776ae06fd6.zip gdb-1e85aad828bf40e0d13bc8b0f5cd88776ae06fd6.tar.gz gdb-1e85aad828bf40e0d13bc8b0f5cd88776ae06fd6.tar.bz2 |
Add Broadcom SB-1A support.
* config/tc-mips.c (mips_cpu_info_table): Add sb1a.
Diffstat (limited to 'gas/config/tc-mips.c')
-rw-r--r-- | gas/config/tc-mips.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index a06bfec..82c2cd2 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 } |