Skip to content

Commit dd9d05c

Browse files
committed
validate: use the correct reveal during opts
1 parent f5418b0 commit dd9d05c

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

compiler/rustc_const_eval/src/transform/validate.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
use rustc_data_structures::fx::FxHashSet;
44
use rustc_index::bit_set::BitSet;
5+
use rustc_infer::traits::Reveal;
56
use rustc_middle::mir::interpret::Scalar;
67
use rustc_middle::mir::visit::NonUseContext::VarDebugInfo;
78
use rustc_middle::mir::visit::{PlaceContext, Visitor};
@@ -44,8 +45,11 @@ impl<'tcx> MirPass<'tcx> for Validator {
4445
return;
4546
}
4647
let def_id = body.source.def_id();
47-
let param_env = tcx.param_env(def_id);
4848
let mir_phase = self.mir_phase;
49+
let param_env = match mir_phase.reveal() {
50+
Reveal::UserFacing => tcx.param_env(def_id),
51+
Reveal::All => tcx.param_env_reveal_all_normalized(def_id),
52+
};
4953

5054
let always_live_locals = always_storage_live_locals(body);
5155
let storage_liveness = MaybeStorageLive::new(always_live_locals)

compiler/rustc_middle/src/mir/syntax.rs

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
use super::{BasicBlock, Constant, Field, Local, SwitchTargets, UserTypeProjection};
77

88
use crate::mir::coverage::{CodeRegion, CoverageKind};
9+
use crate::traits::Reveal;
910
use crate::ty::adjustment::PointerCast;
1011
use crate::ty::subst::SubstsRef;
1112
use crate::ty::{self, List, Ty};
@@ -100,6 +101,13 @@ impl MirPhase {
100101
MirPhase::Runtime(RuntimePhase::Optimized) => "runtime-optimized",
101102
}
102103
}
104+
105+
pub fn reveal(&self) -> Reveal {
106+
match *self {
107+
MirPhase::Built | MirPhase::Analysis(_) => Reveal::UserFacing,
108+
MirPhase::Runtime(_) => Reveal::All,
109+
}
110+
}
103111
}
104112

105113
/// See [`MirPhase::Analysis`].

0 commit comments

Comments
 (0)