summaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/instructions/undefined.c4
-rw-r--r--src/arch/instructions/undefined.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/src/arch/instructions/undefined.c b/src/arch/instructions/undefined.c
index da2f73e..6d90a1c 100644
--- a/src/arch/instructions/undefined.c
+++ b/src/arch/instructions/undefined.c
@@ -258,6 +258,10 @@ const char *g_undef_instruction_get_keyword(const GUndefInstruction *instr)
result = "unpredictable";
break;
+ case IEB_RESERVED:
+ result = "reserved";
+ break;
+
default:
assert(false);
result = NULL;
diff --git a/src/arch/instructions/undefined.h b/src/arch/instructions/undefined.h
index 5aa9bec..8f35f35 100644
--- a/src/arch/instructions/undefined.h
+++ b/src/arch/instructions/undefined.h
@@ -54,6 +54,7 @@ typedef enum _InstrExpectedBehavior
IEB_NOP,
IEB_UNDEFINED,
IEB_UNPREDICTABLE,
+ IEB_RESERVED,
} InstrExpectedBehavior;