diff options
Diffstat (limited to 'rust')
| -rw-r--r-- | rust/src/medium_level_il/instruction.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/src/medium_level_il/instruction.rs b/rust/src/medium_level_il/instruction.rs index 17534b31..c1cd26a3 100644 --- a/rust/src/medium_level_il/instruction.rs +++ b/rust/src/medium_level_il/instruction.rs @@ -851,7 +851,7 @@ impl MediumLevelILInstruction { MemPhi(op) => Lifted::MemPhi(LiftedMemPhi { dest_memory: op.dest_memory, // TODO: Make a stronger type for this. - src_memory: self.get_operand_list(0), + src_memory: self.get_operand_list(1), }), VarSplit(op) => Lifted::VarSplit(op), SetVarSplit(op) => Lifted::SetVarSplit(LiftedSetVarSplit { @@ -977,7 +977,7 @@ impl MediumLevelILInstruction { ) .expect("Valid intrinsic"), params: self - .get_expr_list(3) + .get_expr_list(2) .iter() .map(|expr| expr.lift()) .collect(), |
