diff options
| author | Brandon Miller <brandon@vector35.com> | 2025-09-04 14:03:41 -0400 |
|---|---|---|
| committer | Brandon Miller <brandon@vector35.com> | 2025-09-29 07:07:41 -0400 |
| commit | 1060a72be93a4a229f60e931a003d065beb727e2 (patch) | |
| tree | f1f0c29f0016da8c5d984c48d033cc33d823464b | |
| parent | 5b43c09a23d37c3046320ad2978a1003dfca462c (diff) | |
Make rust il.undefined return a ValueExpr for use as a sub-expr
| -rw-r--r-- | rust/src/low_level_il/lifting.rs | 2 |
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); |
