summaryrefslogtreecommitdiff
path: root/rust/src/mlil
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src/mlil')
-rw-r--r--rust/src/mlil/instruction.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/rust/src/mlil/instruction.rs b/rust/src/mlil/instruction.rs
index 438708db..306a1352 100644
--- a/rust/src/mlil/instruction.rs
+++ b/rust/src/mlil/instruction.rs
@@ -824,7 +824,8 @@ impl MediumLevelILInstruction {
)),
MLIL_TRAP => Op::Trap(Trap::new(function, op.address, op.operands[0])),
// translated directly into a list for Expression or Variables
- MLIL_CALL_OUTPUT | MLIL_CALL_PARAM | MLIL_CALL_PARAM_SSA | MLIL_CALL_OUTPUT_SSA => {
+ // TODO MLIL_MEMORY_INTRINSIC_SSA needs to be handled properly
+ MLIL_CALL_OUTPUT | MLIL_CALL_PARAM | MLIL_CALL_PARAM_SSA | MLIL_CALL_OUTPUT_SSA | MLIL_MEMORY_INTRINSIC_OUTPUT_SSA | MLIL_MEMORY_INTRINSIC_SSA => {
unreachable!()
}
}