diff options
author | YunQiang Su <yunqiang.su@cipunited.com> | 2024-07-26 18:01:09 +0100 |
---|---|---|
committer | Maciej W. Rozycki <macro@redhat.com> | 2024-07-26 18:01:09 +0100 |
commit | 08e6af1bac935c0820c51a9e6a52294b4ae4d832 (patch) | |
tree | f1431fd3c66939ca0c30f34300e4def0f8f5ed29 /gas/config | |
parent | ad43ae7635a389f692f51a9b05287f5a71129595 (diff) | |
download | fsf-binutils-gdb-08e6af1bac935c0820c51a9e6a52294b4ae4d832.zip fsf-binutils-gdb-08e6af1bac935c0820c51a9e6a52294b4ae4d832.tar.gz fsf-binutils-gdb-08e6af1bac935c0820c51a9e6a52294b4ae4d832.tar.bz2 |
microMIPS: Add MT ASE instruction set support
Add the MT ASE instruction operand types and encodings to the microMIPS
opcode table and enable the assembly of these instructions in GAS from
MIPSr2 onwards. Update the binutils and GAS testsuites accordingly.
References:
"MIPS Architecture for Programmers, Volume IV-f: The MIPS MT Module for
the microMIPS32 Architecture", MIPS Technologies, Inc., Document Number:
MD00768, Revision 1.12, July 16, 2013
Co-Authored-By: Maciej W. Rozycki <macro@redhat.com>
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index d551b47..28d3ed8 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -1814,7 +1814,7 @@ static const struct mips_ase mips_ases[] = { { "mt", ASE_MT, 0, OPTION_MT, OPTION_NO_MT, - 2, 2, -1, -1, + 2, 2, 2, 2, -1 }, { "smartmips", ASE_SMARTMIPS, 0, |