summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>2005-01-21 19:42:08 +0000
committerFred Fish <fnf@specifix.com>2005-01-21 19:42:08 +0000
commit239cb185bc6c2452df365a3cd7a94ae3f195bd36 (patch)
tree3d6b071cbd05c85ce65a2c7266c3d5802a53325b /include
parent5c45e068d75b49e595bc60f84d223b83ffaac4d8 (diff)
downloadbinutils-gdb-239cb185bc6c2452df365a3cd7a94ae3f195bd36.tar.gz
2005-01-21 Fred Fish <fnf@specifixinc.com>
* mips.h: Change INSN_ALIAS to INSN2_ALIAS. Change INSN_WRITE_MDMX_ACC to INSN2_WRITE_MDMX_ACC. Change INSN_READ_MDMX_ACC to INSN2_READ_MDMX_ACC.
Diffstat (limited to 'include')
-rw-r--r--include/opcode/ChangeLog6
-rw-r--r--include/opcode/mips.h6
2 files changed, 9 insertions, 3 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog
index ae60f338810..1a589bd2074 100644
--- a/include/opcode/ChangeLog
+++ b/include/opcode/ChangeLog
@@ -1,3 +1,9 @@
+2005-01-21 Fred Fish <fnf@specifixinc.com>
+
+ * mips.h: Change INSN_ALIAS to INSN2_ALIAS.
+ Change INSN_WRITE_MDMX_ACC to INSN2_WRITE_MDMX_ACC.
+ Change INSN_READ_MDMX_ACC to INSN2_READ_MDMX_ACC.
+
2005-01-19 Fred Fish <fnf@specifixinc.com>
* mips.h (struct mips_opcode): Add new pinfo2 member.
diff --git a/include/opcode/mips.h b/include/opcode/mips.h
index cde61990e67..c660345a8ad 100644
--- a/include/opcode/mips.h
+++ b/include/opcode/mips.h
@@ -383,11 +383,11 @@ struct mips_opcode
instruction. */
/* Instruction is a simple alias (I.E. "move" for daddu/addu/or) */
-#define INSN_ALIAS 0x00000001
+#define INSN2_ALIAS 0x00000001
/* Instruction reads MDMX accumulator. */
-#define INSN_READ_MDMX_ACC 0x00000002
+#define INSN2_READ_MDMX_ACC 0x00000002
/* Instruction writes MDMX accumulator. */
-#define INSN_WRITE_MDMX_ACC 0x00000004
+#define INSN2_WRITE_MDMX_ACC 0x00000004
/* Instruction is actually a macro. It should be ignored by the
disassembler, and requires special treatment by the assembler. */