about summary refs log tree commit diff
path: root/compiler/rustc_lint/src/lib.rs
diff options
context:
space:
mode:
authorCamille GILLOT <gillot.camille@gmail.com>2021-07-13 18:45:20 +0200
committerCamille GILLOT <gillot.camille@gmail.com>2022-07-06 23:04:55 +0200
commit250c71b85d0eed22982ef2b2db92fd5e63772c42 (patch)
tree41f7151fba33e5fd0260b811358d4fde003d2270 /compiler/rustc_lint/src/lib.rs
parent43bb31b9540a439dcca65f47b8644eafe4a42e2d (diff)
downloadrust-250c71b85d0eed22982ef2b2db92fd5e63772c42.tar.gz
rust-250c71b85d0eed22982ef2b2db92fd5e63772c42.zip
Make AST lowering a query.
Diffstat (limited to 'compiler/rustc_lint/src/lib.rs')
-rw-r--r--compiler/rustc_lint/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_lint/src/lib.rs b/compiler/rustc_lint/src/lib.rs
index c1255ae5056..aaee0caa070 100644
--- a/compiler/rustc_lint/src/lib.rs
+++ b/compiler/rustc_lint/src/lib.rs
@@ -99,7 +99,7 @@ pub use builtin::SoftLints;
 pub use context::{CheckLintNameResult, FindLintError, LintStore};
 pub use context::{EarlyContext, LateContext, LintContext};
 pub use early::{check_ast_node, EarlyCheckNode};
-pub use late::check_crate;
+pub use late::{check_crate, unerased_lint_store};
 pub use passes::{EarlyLintPass, LateLintPass};
 pub use rustc_session::lint::Level::{self, *};
 pub use rustc_session::lint::{BufferedEarlyLint, FutureIncompatibleInfo, Lint, LintId};