diff options
author | Sandra Loosemore <sandra@codesourcery.com> | 2012-08-01 19:59:43 +0000 |
---|---|---|
committer | Sandra Loosemore <sandra@codesourcery.com> | 2012-08-01 19:59:43 +0000 |
commit | 711eefe492969b15faf9e305658622b9b403752b (patch) | |
tree | 46bdd1aebd43e9914ffdf380ba7b0061a5e06373 /gas/config | |
parent | 57295b0bb3d70ec0760029f9515b0631ad9e4110 (diff) | |
download | gdb-711eefe492969b15faf9e305658622b9b403752b.zip gdb-711eefe492969b15faf9e305658622b9b403752b.tar.gz gdb-711eefe492969b15faf9e305658622b9b403752b.tar.bz2 |
2012-08-01 Catherine Moore <clm@codesourcery.com>
Sandra Loosemore <sandra@codesourcery.com>
gas/
* config/mips/tc-mips.c (mips_cpu_info): Add the 34kn.
* doc/c-mips.texi (MIPS Opts): Document it.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-mips.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index e2ecf5d..a9bd0d8 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -19130,6 +19130,8 @@ static const struct mips_cpu_info mips_cpu_info_table[] = ISA_MIPS32R2, CPU_MIPS32R2 }, { "34kx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 }, + /* 34Kn is a 34kc without DSP. */ + { "34kn", MIPS_CPU_ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 }, /* 74K with DSP and DSPR2 ASE, other ASEs are optional. */ { "74kc", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 }, |