From e9604c37df479a991d131d9540fafe78c7a0f7d4 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Thu, 9 Nov 2023 18:39:55 -0500 Subject: Add LLIL/MLIL instructions to describe integer vs. floating point argument usage --- rust/examples/mlil_visitor/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'rust/examples') diff --git a/rust/examples/mlil_visitor/src/main.rs b/rust/examples/mlil_visitor/src/main.rs index f83a7eac..3df005a7 100644 --- a/rust/examples/mlil_visitor/src/main.rs +++ b/rust/examples/mlil_visitor/src/main.rs @@ -109,6 +109,8 @@ fn print_operation(operation: &MediumLevelILOperation) { CallUntyped(_) => print!("CallUntyped"), TailcallUntyped(_) => print!("TailcallUntyped"), SyscallUntyped(_) => print!("SyscallUntyped"), + SeparateParamList(_) => print!("SeparateParamList"), + SharedParamSlot(_) => print!("SharedParamSlot"), Neg(_) => print!("Neg"), Not(_) => print!("Not"), Sx(_) => print!("Sx"), -- cgit v1.3.1