diff options
author | Matthew Fortune <matthew.fortune@imgtec.com> | 2016-05-20 15:20:42 +0100 |
---|---|---|
committer | Robert Suchanek <robert.suchanek@imgtec.com> | 2016-05-20 15:21:10 +0100 |
commit | a4968f42e78972fa10b1a84a5e72afd4b65b0eca (patch) | |
tree | bf7689f267255a3fe2d37ec39d2753e5769596b4 /gas/config/tc-mips.c | |
parent | 4e21640f674499048157fa62f08b16f6039f78f6 (diff) | |
download | gdb-a4968f42e78972fa10b1a84a5e72afd4b65b0eca.zip gdb-a4968f42e78972fa10b1a84a5e72afd4b65b0eca.tar.gz gdb-a4968f42e78972fa10b1a84a5e72afd4b65b0eca.tar.bz2 |
MIPS: Add support for P6600
gas/
* config/tc-mips.c (mips_cpu_info_table): Update comment. Add
p6600 entry.
* doc/c-mips.texi: Document p6600 -march option.
Diffstat (limited to 'gas/config/tc-mips.c')
-rw-r--r-- | gas/config/tc-mips.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 233c641..f58955c 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -18756,8 +18756,9 @@ static const struct mips_cpu_info mips_cpu_info_table[] = MIPS64R2 rather than MIPS64. */ { "xlp", 0, 0, ISA_MIPS64R2, CPU_XLR }, - /* i6400. */ + /* MIPS 64 Release 6 */ { "i6400", 0, ASE_MSA, ISA_MIPS64R6, CPU_MIPS64R6}, + { "p6600", 0, ASE_VIRT | ASE_MSA, ISA_MIPS64R6, CPU_MIPS64R6}, /* End marker */ { NULL, 0, 0, 0, 0 } |