summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Miller <brandon@vector35.com>2025-09-04 14:03:41 -0400
committerBrandon Miller <brandon@vector35.com>2025-09-29 07:07:41 -0400
commit1060a72be93a4a229f60e931a003d065beb727e2 (patch)
treef1f0c29f0016da8c5d984c48d033cc33d823464b
parent5b43c09a23d37c3046320ad2978a1003dfca462c (diff)
Make rust il.undefined return a ValueExpr for use as a sub-expr
-rw-r--r--rust/src/low_level_il/lifting.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/low_level_il/lifting.rs b/rust/src/low_level_il/lifting.rs
index a51cd3d5..acb21301 100644
--- a/rust/src/low_level_il/lifting.rs
+++ b/rust/src/low_level_il/lifting.rs
@@ -1040,7 +1040,7 @@ impl LowLevelILMutableFunction {
}
no_arg_lifter!(unimplemented, LLIL_UNIMPL, ValueExpr);
- no_arg_lifter!(undefined, LLIL_UNDEF, VoidExpr);
+ no_arg_lifter!(undefined, LLIL_UNDEF, ValueExpr);
no_arg_lifter!(nop, LLIL_NOP, VoidExpr);
no_arg_lifter!(no_ret, LLIL_NORET, VoidExpr);