Skip to content

Commit 4599182

Browse files
committed
---
yaml --- r: 5085 b: refs/heads/master c: 2d1dec7 h: refs/heads/master i: 5083: bb4917a v: v3
1 parent 19ac256 commit 4599182

14 files changed

+293
-291
lines changed

[refs]

+1-1
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

+4-2
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)