Skip to content

Commit 5006145

Browse files
committed
Auto merge of #135753 - compiler-errors:from-ty-const, r=oli-obk
Get rid of `mir::Const::from_ty_const` This function is strange, because it turns valtrees into `mir::Const::Value`, but the rest of the const variants stay as type system consts. All of the callsites except for one in `instsimplify` (array length simplification of `ptr_metadata` call) just go through the valtree arm of the function, so it's easier to just create a `mir::Const` directly for those. For the instsimplify case, if we have a type system const we should *keep* having a type system const, rather than turning it into a `mir::Const::Value`; it doesn't really matter in practice, though, bc `usize` has no padding, but it feels more principled.
2 parents 6180622 + 2b488c3 commit 5006145

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

clippy_lints/src/matches/overlapping_arms.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ use clippy_utils::diagnostics::span_lint_and_note;
33
use core::cmp::Ordering;
44
use rustc_hir::{Arm, Expr, PatKind, RangeEnd};
55
use rustc_lint::LateContext;
6-
use rustc_middle::mir;
76
use rustc_middle::ty::Ty;
87
use rustc_span::Span;
98

@@ -36,14 +35,12 @@ fn all_ranges<'tcx>(cx: &LateContext<'tcx>, arms: &'tcx [Arm<'_>], ty: Ty<'tcx>)
3635
let lhs_const = if let Some(lhs) = lhs {
3736
ConstEvalCtxt::new(cx).eval_pat_expr(lhs)?
3837
} else {
39-
let min_val_const = ty.numeric_min_val(cx.tcx)?;
40-
mir_to_const(cx.tcx, mir::Const::from_ty_const(min_val_const, ty, cx.tcx))?
38+
mir_to_const(cx.tcx, ty.numeric_min_val(cx.tcx)?)?
4139
};
4240
let rhs_const = if let Some(rhs) = rhs {
4341
ConstEvalCtxt::new(cx).eval_pat_expr(rhs)?
4442
} else {
45-
let max_val_const = ty.numeric_max_val(cx.tcx)?;
46-
mir_to_const(cx.tcx, mir::Const::from_ty_const(max_val_const, ty, cx.tcx))?
43+
mir_to_const(cx.tcx, ty.numeric_max_val(cx.tcx)?)?
4744
};
4845
let lhs_val = lhs_const.int_value(cx.tcx, ty)?;
4946
let rhs_val = rhs_const.int_value(cx.tcx, ty)?;

clippy_utils/src/lib.rs

+4-5
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ use rustc_hir::{
112112
use rustc_lexer::{TokenKind, tokenize};
113113
use rustc_lint::{LateContext, Level, Lint, LintContext};
114114
use rustc_middle::hir::place::PlaceBase;
115-
use rustc_middle::mir::Const;
116115
use rustc_middle::ty::adjustment::{Adjust, Adjustment, AutoBorrow};
117116
use rustc_middle::ty::fast_reject::SimplifiedType;
118117
use rustc_middle::ty::layout::IntegerExt;
@@ -1584,8 +1583,8 @@ pub fn is_range_full(cx: &LateContext<'_>, expr: &Expr<'_>, container_path: Opti
15841583
let start_is_none_or_min = start.is_none_or(|start| {
15851584
if let rustc_ty::Adt(_, subst) = ty.kind()
15861585
&& let bnd_ty = subst.type_at(0)
1587-
&& let Some(min_val) = bnd_ty.numeric_min_val(cx.tcx)
1588-
&& let Some(min_const) = mir_to_const(cx.tcx, Const::from_ty_const(min_val, bnd_ty, cx.tcx))
1586+
&& let Some(min_const) = bnd_ty.numeric_min_val(cx.tcx)
1587+
&& let Some(min_const) = mir_to_const(cx.tcx, min_const)
15891588
&& let Some(start_const) = ConstEvalCtxt::new(cx).eval(start)
15901589
{
15911590
start_const == min_const
@@ -1597,8 +1596,8 @@ pub fn is_range_full(cx: &LateContext<'_>, expr: &Expr<'_>, container_path: Opti
15971596
RangeLimits::Closed => {
15981597
if let rustc_ty::Adt(_, subst) = ty.kind()
15991598
&& let bnd_ty = subst.type_at(0)
1600-
&& let Some(max_val) = bnd_ty.numeric_max_val(cx.tcx)
1601-
&& let Some(max_const) = mir_to_const(cx.tcx, Const::from_ty_const(max_val, bnd_ty, cx.tcx))
1599+
&& let Some(max_const) = bnd_ty.numeric_max_val(cx.tcx)
1600+
&& let Some(max_const) = mir_to_const(cx.tcx, max_const)
16021601
&& let Some(end_const) = ConstEvalCtxt::new(cx).eval(end)
16031602
{
16041603
end_const == max_const

0 commit comments

Comments
 (0)