Skip to content

Commit 2472e31

Browse files
committed
---
yaml --- r: 129541 b: refs/heads/snap-stage3 c: 1660c3b h: refs/heads/master i: 129539: b47b9ad v: v3
1 parent c71bf94 commit 2472e31

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 566b470e138e929e8a93d613372db1ba177c494f
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 5fb2dfaa200f2cb32e77c54ae8a5e0f4823b65c8
4+
refs/heads/snap-stage3: 1660c3be932ff7beff5f025a708bf3ee0ff2ebd4
55
refs/heads/try: 80b45ddbd351f0a4a939c3a3c4e20b4defec4b35
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/librustc/middle/expr_use_visitor.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ impl<'d,'t,TYPER:mc::Typer> ExprUseVisitor<'d,'t,TYPER> {
234234
decl: &ast::FnDecl,
235235
body: &ast::Block) {
236236
for arg in decl.inputs.iter() {
237-
let arg_ty = ty::node_id_to_type(self.tcx(), arg.pat.id);
237+
let arg_ty = return_if_err!(self.typer.node_ty(arg.pat.id));
238238

239239
let arg_cmt = self.mc.cat_rvalue(
240240
arg.id,
@@ -414,7 +414,7 @@ impl<'d,'t,TYPER:mc::Typer> ExprUseVisitor<'d,'t,TYPER> {
414414

415415
// Fetch the type of the value that the iteration yields to
416416
// produce the pattern's categorized mutable type.
417-
let pattern_type = ty::node_id_to_type(self.tcx(), pat.id);
417+
let pattern_type = return_if_err!(self.typer.node_ty(pat.id));
418418
let pat_cmt = self.mc.cat_rvalue(pat.id,
419419
pat.span,
420420
ty::ReScope(blk.id),
@@ -828,7 +828,7 @@ impl<'d,'t,TYPER:mc::Typer> ExprUseVisitor<'d,'t,TYPER> {
828828
pat.repr(tcx));
829829

830830
// pat_ty: the type of the binding being produced.
831-
let pat_ty = ty::node_id_to_type(tcx, pat.id);
831+
let pat_ty = return_if_err!(typer.node_ty(pat.id));
832832

833833
// Each match binding is effectively an assignment to the
834834
// binding being produced.
@@ -971,7 +971,7 @@ impl<'d,'t,TYPER:mc::Typer> ExprUseVisitor<'d,'t,TYPER> {
971971
// Create the cmt for the variable being borrowed, from the
972972
// caller's perspective
973973
let var_id = upvar_def.def_id().node;
974-
let var_ty = ty::node_id_to_type(self.tcx(), var_id);
974+
let var_ty = try!(self.typer.node_ty(var_id));
975975
self.mc.cat_def(closure_id, closure_span, var_ty, upvar_def)
976976
}
977977
}

0 commit comments

Comments
 (0)