We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59d7d7d commit 707a9a0Copy full SHA for 707a9a0
src/librustc_driver/driver.rs
@@ -1243,8 +1243,6 @@ where
1243
// tcx available.
1244
time(sess, "dep graph tcx init", || rustc_incremental::dep_graph_tcx_init(tcx));
1245
1246
- time(sess, "loop checking", || loops::check_crate(tcx));
1247
-
1248
time(sess, "looking for plugin registrar", || {
1249
plugin::build::find_plugin_registrar(tcx)
1250
});
@@ -1253,6 +1251,8 @@ where
1253
1251
proc_macro_decls::find(tcx)
1254
1252
1255
+ time(sess, "loop checking", || loops::check_crate(tcx));
+
1256
time(sess, "attribute checking", || {
1257
hir::check_attr::check_crate(tcx)
1258
0 commit comments