Skip to content

Commit a4cc58e

Browse files
committed
one more place -> ptr rename
1 parent 19add0b commit a4cc58e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/shims/intrinsics.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -370,8 +370,8 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
370370
}
371371

372372
"move_val_init" => {
373-
let ptr = this.deref_operand(args[0])?;
374-
this.copy_op(args[1], ptr.into())?;
373+
let place = this.deref_operand(args[0])?;
374+
this.copy_op(args[1], place.into())?;
375375
}
376376

377377
"offset" => {

0 commit comments

Comments
 (0)