Skip to content

Commit 0e42f9e

Browse files
committed
---
yaml --- r: 5086 b: refs/heads/master c: 2d1dec7 h: refs/heads/master v: v3
1 parent 77028bf commit 0e42f9e

File tree

14 files changed

+293
-291
lines changed

14 files changed

+293
-291
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 34ae491ca9f7ad7549fa0d767f7452055df875d8
2+
refs/heads/master: 2d1dec78e7fd2fa0a569f797d147d5940e81f3d0

trunk/src/comp/driver/rustc.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,10 @@ fn compile_input(sess: session::session, cfg: ast::crate_cfg, input: &istr,
165165
time(time_passes, ~"typestate checking",
166166
bind middle::tstate::ck::check_crate(ty_cx, crate));
167167
}
168-
let mut_map = time(time_passes, ~"alias checking",
169-
bind middle::alias::check_crate(ty_cx, crate));
168+
let mut_map = time(time_passes, ~"mutability checking",
169+
bind middle::mut::check_crate(ty_cx, crate));
170+
time(time_passes, ~"alias checking",
171+
bind middle::alias::check_crate(ty_cx, crate));
170172
time(time_passes, ~"kind checking",
171173
bind kind::check_crate(ty_cx, crate));
172174
if sess.get_opts().no_trans { ret; }

0 commit comments

Comments
 (0)