Skip to content

Commit

Permalink
rebasing
Browse files Browse the repository at this point in the history
  • Loading branch information
nrc committed Jan 26, 2016
1 parent 0b511e8 commit 7b47f5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/librustc_driver/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ pub fn phase_3_run_analysis_passes<'tcx, F, R>(sess: &'tcx Session,

time(time_passes,
"const checking",
|| middle::check_const::check_crate(tcx));
|| consts::check_crate(tcx));

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

time(time_passes,
"rvalue checking",
|| middle::check_rvalues::check_crate(tcx));
|| rvalues::check_crate(tcx));

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

0 comments on commit 7b47f5e

Please sign in to comment.