aboutsummaryrefslogtreecommitdiff
path: root/opcodes/ChangeLog
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2017-04-11 07:36:43 +0930
committerAlan Modra <amodra@gmail.com>2017-04-11 07:36:43 +0930
commit9570835e5597037bee5042edf822675e715b3caf (patch)
tree97a926c2dc9e45f38949bf7e30216d1ddd5a2590 /opcodes/ChangeLog
parent9a85b496ac4e6488d427155c24f87367ab1f6b1b (diff)
downloadgdb-9570835e5597037bee5042edf822675e715b3caf.zip
gdb-9570835e5597037bee5042edf822675e715b3caf.tar.gz
gdb-9570835e5597037bee5042edf822675e715b3caf.tar.bz2
Bye Bye PPC_OPCODE_VSX3
This bit is also useless as it can be replaced with PPC_OPCODE_POWER9. Defining the VSX2 and VSX3 selection based on cpu bits also lets the assembler/disassembler distinguish between the power7 VSX opcodes and the power8 ones. Note that this change means -mvsx now reverts back to just adding the power7 VSX insns. include/ * opcode/ppc.h (PPC_OPCODE_VSX3): Delete. opcodes/ * ppc-dis.c (ppc_opts): Remove PPC_OPCODE_VSX3. * ppc-opc.c (PPCVSX2): Define as PPC_OPCODE_POWER8. (PPCVSX3): Define as PPC_OPCODE_POWER9.
Diffstat (limited to 'opcodes/ChangeLog')
-rw-r--r--opcodes/ChangeLog5
1 files changed, 4 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index ef69ec4..eb432a7 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,8 +1,11 @@
2017-04-11 Alan Modra <amodra@gmail.com>
- * ppc-dis.c (ppc_opts): Remove PPC_OPCODE_ALTIVEC2.
+ * ppc-dis.c (ppc_opts): Remove PPC_OPCODE_ALTIVEC2 and
+ PPC_OPCODE_VSX3.
* ppc-opc.c (PPCVEC2): Define as PPC_OPCODE_POWER8|PPC_OPCODE_E6500.
(PPCVEC3): Define as PPC_OPCODE_POWER9.
+ (PPCVSX2): Define as PPC_OPCODE_POWER8.
+ (PPCVSX3): Define as PPC_OPCODE_POWER9.
2017-04-10 Alan Modra <amodra@gmail.com>