Skip to content

Commit 4e8edfb

Browse files
committed
Forward some layouts to prevent recomputation
1 parent dbacfbc commit 4e8edfb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/rustc_mir/src/interpret/intrinsics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
171171
};
172172
let val =
173173
self.tcx.const_eval_global_id(self.param_env, gid, Some(self.tcx.span))?;
174-
let val = self.const_val_to_op(val, ty, None)?;
174+
let val = self.const_val_to_op(val, ty, Some(dest.layout))?;
175175
self.copy_op(&val, dest)?;
176176
}
177177

compiler/rustc_mir/src/interpret/operand.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
578578
) -> InterpResult<'tcx, OpTy<'tcx, M::PointerTag>> {
579579
match val {
580580
mir::ConstantKind::Ty(ct) => self.const_to_op(ct, layout),
581-
mir::ConstantKind::Val(val, ty) => self.const_val_to_op(*val, ty, None),
581+
mir::ConstantKind::Val(val, ty) => self.const_val_to_op(*val, ty, layout),
582582
}
583583
}
584584

0 commit comments

Comments
 (0)