diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2019-12-30 14:22:46 +0100 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2020-01-01 13:20:18 +0100 |
| commit | 96180ff655dc10bc03bce3fb630f6d16cde71398 (patch) | |
| tree | 4a8f98acd27bdd6675f853ea5edae6a2a1db801b /src/librustc_interface | |
| parent | 3a350e1a39a47f33653be1ced1f3ccb940adeb54 (diff) | |
| download | rust-96180ff655dc10bc03bce3fb630f6d16cde71398.tar.gz rust-96180ff655dc10bc03bce3fb630f6d16cde71398.zip | |
Move late lint machanism in librustc_lint.
Diffstat (limited to 'src/librustc_interface')
| -rw-r--r-- | src/librustc_interface/passes.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_interface/passes.rs b/src/librustc_interface/passes.rs index 35d6d3abdd8..a796408491f 100644 --- a/src/librustc_interface/passes.rs +++ b/src/librustc_interface/passes.rs @@ -886,7 +886,7 @@ fn analysis(tcx: TyCtxt<'_>, cnum: CrateNum) -> Result<()> { }, { time(sess, "lint checking", || { - lint::check_crate(tcx, || { + rustc_lint::check_crate(tcx, || { rustc_lint::BuiltinCombinedLateLintPass::new() }); }); |
