Skip to content

Commit 7b47f5e

Browse files
committed
rebasing
1 parent 0b511e8 commit 7b47f5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc_driver/driver.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ pub fn phase_3_run_analysis_passes<'tcx, F, R>(sess: &'tcx Session,
778778

779779
time(time_passes,
780780
"const checking",
781-
|| middle::check_const::check_crate(tcx));
781+
|| consts::check_crate(tcx));
782782

783783
let access_levels =
784784
time(time_passes, "privacy checking", || {
@@ -819,7 +819,7 @@ pub fn phase_3_run_analysis_passes<'tcx, F, R>(sess: &'tcx Session,
819819

820820
time(time_passes,
821821
"rvalue checking",
822-
|| middle::check_rvalues::check_crate(tcx));
822+
|| rvalues::check_crate(tcx));
823823

824824
// Avoid overwhelming user with errors if type checking failed.
825825
// I'm not sure how helpful this is, to be honest, but it avoids

0 commit comments

Comments
 (0)