Skip to content

Commit 2b2916a

Browse files
committed
---
yaml --- r: 154617 b: refs/heads/try2 c: 1660c3b h: refs/heads/master i: 154615: f77c879 v: v3
1 parent e6d7301 commit 2b2916a

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
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 5fb2dfaa200f2cb32e77c54ae8a5e0f4823b65c8
8+
refs/heads/try2: 1660c3be932ff7beff5f025a708bf3ee0ff2ebd4
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/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)