diff options
author | Alan Modra <amodra@gmail.com> | 2020-06-06 14:22:37 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-06-06 14:44:32 +0930 |
commit | 1424c35d071e7d49a4a219c7dee8c88ffd60ddca (patch) | |
tree | 768b988cb5805f11b62331539552b9f218761179 /opcodes/ppc-dis.c | |
parent | 87c69f9732039d889f04ae8b9bb81b80e530a6f1 (diff) | |
download | gdb-1424c35d071e7d49a4a219c7dee8c88ffd60ddca.zip gdb-1424c35d071e7d49a4a219c7dee8c88ffd60ddca.tar.gz gdb-1424c35d071e7d49a4a219c7dee8c88ffd60ddca.tar.bz2 |
Power10 tidies
binutils/
* doc/binutils.texi (PowerPC -M option): Mention power10 and pwr10.
gas/
* config/tc-ppc.c (md_show_usage): Mention -mpower10 and -mpwr10.
* doc/c-ppc.texi: Likewise.
opcodes/
* ppc-dis.c (ppc_opts): Accept -mpwr10/-Mpwr10.
Diffstat (limited to 'opcodes/ppc-dis.c')
-rw-r--r-- | opcodes/ppc-dis.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/opcodes/ppc-dis.c b/opcodes/ppc-dis.c index 162f770..eca1f36 100644 --- a/opcodes/ppc-dis.c +++ b/opcodes/ppc-dis.c @@ -238,6 +238,11 @@ struct ppc_mopt ppc_opts[] = { | PPC_OPCODE_POWER7 | PPC_OPCODE_POWER8 | PPC_OPCODE_POWER9 | PPC_OPCODE_ALTIVEC | PPC_OPCODE_VSX), 0 }, + { "pwr10", (PPC_OPCODE_PPC | PPC_OPCODE_ISEL | PPC_OPCODE_64 + | PPC_OPCODE_POWER4 | PPC_OPCODE_POWER5 | PPC_OPCODE_POWER6 + | PPC_OPCODE_POWER7 | PPC_OPCODE_POWER8 | PPC_OPCODE_POWER9 + | PPC_OPCODE_POWER10 | PPC_OPCODE_ALTIVEC | PPC_OPCODE_VSX), + 0 }, { "pwrx", PPC_OPCODE_POWER | PPC_OPCODE_POWER2, 0 }, { "raw", PPC_OPCODE_PPC, |