Skip to content

Commit fc43df0

Browse files
committed
Revert "Auto merge of #101620 - cjgillot:compute_lint_levels_by_def, r=oli-obk"
This reverts commit 2cb9a65, reversing changes made to 750bd1a.
1 parent 381bd2a commit fc43df0

File tree

18 files changed

+488
-670
lines changed

18 files changed

+488
-670
lines changed

compiler/rustc_errors/src/diagnostic.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -339,10 +339,9 @@ impl Diagnostic {
339339
// The lint index inside the attribute is manually transferred here.
340340
let lint_index = expectation_id.get_lint_index();
341341
expectation_id.set_lint_index(None);
342-
let mut stable_id = unstable_to_stable
342+
let mut stable_id = *unstable_to_stable
343343
.get(&expectation_id)
344-
.expect("each unstable `LintExpectationId` must have a matching stable id")
345-
.normalize();
344+
.expect("each unstable `LintExpectationId` must have a matching stable id");
346345

347346
stable_id.set_lint_index(lint_index);
348347
*expectation_id = stable_id;

compiler/rustc_errors/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1205,7 +1205,7 @@ impl HandlerInner {
12051205

12061206
if let Some(expectation_id) = diagnostic.level.get_expectation_id() {
12071207
self.suppressed_expected_diag = true;
1208-
self.fulfilled_expectations.insert(expectation_id.normalize());
1208+
self.fulfilled_expectations.insert(expectation_id);
12091209
}
12101210

12111211
if matches!(diagnostic.level, Warning(_))

compiler/rustc_lint/src/context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ pub struct LateContext<'tcx> {
560560

561561
/// Context for lint checking of the AST, after expansion, before lowering to HIR.
562562
pub struct EarlyContext<'a> {
563-
pub builder: LintLevelsBuilder<'a, crate::levels::TopDown>,
563+
pub builder: LintLevelsBuilder<'a>,
564564
pub buffered: LintBuffer,
565565
}
566566

compiler/rustc_lint/src/early.rs

-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ impl<'a, T: EarlyLintPass> EarlyContextAndPass<'a, T> {
5959
F: FnOnce(&mut Self),
6060
{
6161
let is_crate_node = id == ast::CRATE_NODE_ID;
62-
debug!(?id);
6362
let push = self.context.builder.push(attrs, is_crate_node, None);
6463

6564
self.check_id(id);

compiler/rustc_lint/src/expect.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,8 @@ fn check_expectations(tcx: TyCtxt<'_>, tool_filter: Option<Symbol>) {
1616
return;
1717
}
1818

19-
let lint_expectations = tcx.lint_expectations(());
2019
let fulfilled_expectations = tcx.sess.diagnostic().steal_fulfilled_expectation_ids();
21-
22-
tracing::debug!(?lint_expectations, ?fulfilled_expectations);
20+
let lint_expectations = &tcx.lint_levels(()).lint_expectations;
2321

2422
for (id, expectation) in lint_expectations {
2523
// This check will always be true, since `lint_expectations` only

0 commit comments

Comments
 (0)