diff options
| author | blyxyas <blyxyas@gmail.com> | 2024-06-18 22:44:28 +0200 |
|---|---|---|
| committer | blyxyas <blyxyas@gmail.com> | 2024-10-19 16:20:33 +0200 |
| commit | 71b4d108c7e71c15c0f61d737ebdc0e1cf559d3c (patch) | |
| tree | 2554ae8686bc2a11446fe6c34f5ed99311a4f8ac /compiler/rustc_interface/src | |
| parent | edc65776274d14fc7f7f93de66ac3b2d15bbbc37 (diff) | |
| download | rust-71b4d108c7e71c15c0f61d737ebdc0e1cf559d3c.tar.gz rust-71b4d108c7e71c15c0f61d737ebdc0e1cf559d3c.zip | |
Follow review comments (optimize the filtering)
Diffstat (limited to 'compiler/rustc_interface/src')
| -rw-r--r-- | compiler/rustc_interface/src/passes.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/passes.rs b/compiler/rustc_interface/src/passes.rs index fd850d2f39a..608d66184f0 100644 --- a/compiler/rustc_interface/src/passes.rs +++ b/compiler/rustc_interface/src/passes.rs @@ -972,7 +972,7 @@ fn analysis(tcx: TyCtxt<'_>, (): ()) -> Result<()> { tcx.ensure().check_mod_privacy(module); }); }); - } + } // { sess.time("mir_checking", || { tcx.hir().mir_for }) } ); // This check has to be run after all lints are done processing. We don't |
