summaryrefslogtreecommitdiff
path: root/include/opcode
diff options
context:
space:
mode:
authorAnthony Green <green@redhat.com>2012-09-28 03:53:39 +0000
committerAnthony Green <green@redhat.com>2012-09-28 03:53:39 +0000
commitb4e0ba2771e15d3d12a5344c7c06efc59f572eff (patch)
tree77ce5a74e1460dc6a3a0601df835a953bfd18612 /include/opcode
parent5d62474dbe75d63c7294efe3ede3b7bdef4161d4 (diff)
downloadbinutils-redhat-b4e0ba2771e15d3d12a5344c7c06efc59f572eff.tar.gz
Don't abort() when disassembling bad moxie instructions.
Diffstat (limited to 'include/opcode')
-rw-r--r--include/opcode/moxie.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/opcode/moxie.h b/include/opcode/moxie.h
index e2bc374f04..dae40c8e83 100644
--- a/include/opcode/moxie.h
+++ b/include/opcode/moxie.h
@@ -60,6 +60,8 @@
#define MOXIE_F3_NARG 0x300
#define MOXIE_F3_PCREL 0x301
+#define MOXIE_BAD 0x400
+
typedef struct moxie_opc_info_t
{
short opcode;
@@ -67,6 +69,6 @@ typedef struct moxie_opc_info_t
const char * name;
} moxie_opc_info_t;
-extern const moxie_opc_info_t moxie_form1_opc_info[64];
+extern const moxie_opc_info_t moxie_form1_opc_info[128];
extern const moxie_opc_info_t moxie_form2_opc_info[4];
extern const moxie_opc_info_t moxie_form3_opc_info[16];