Skip to content

Commit c604350

Browse files
committed
fix rebase fallout
1 parent 19c4cfd commit c604350

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_mir/interpret/operand.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ impl<'a, 'mir, 'tcx, M: Machine<'a, 'mir, 'tcx>> InterpretCx<'a, 'mir, 'tcx, M>
508508
) -> EvalResult<'tcx, OpTy<'tcx, M::PointerTag>> {
509509
let tag_scalar = |scalar| match scalar {
510510
Scalar::Ptr(ptr) => Scalar::Ptr(self.tag_static_base_pointer(ptr)),
511-
Scalar::Bits { bits, size } => Scalar::Bits { bits, size },
511+
Scalar::Raw { data, size } => Scalar::Raw { data, size },
512512
};
513513
// Early-return cases.
514514
match val.val {

0 commit comments

Comments
 (0)