Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-ty/src/mir/eval.rs')
| -rw-r--r-- | crates/hir-ty/src/mir/eval.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/crates/hir-ty/src/mir/eval.rs b/crates/hir-ty/src/mir/eval.rs index 124adf8864..5e8b44f199 100644 --- a/crates/hir-ty/src/mir/eval.rs +++ b/crates/hir-ty/src/mir/eval.rs @@ -1387,10 +1387,7 @@ impl Evaluator<'_> { | CastKind::PointerFromExposedAddress => { let current_ty = self.operand_ty(operand, locals)?; let is_signed = match current_ty.kind(Interner) { - TyKind::Scalar(s) => match s { - chalk_ir::Scalar::Int(_) => true, - _ => false, - }, + TyKind::Scalar(chalk_ir::Scalar::Int(_)) => true, _ => false, }; let current = pad16(self.eval_operand(operand, locals)?.get(self)?, is_signed); |