From 22796c8bade7d44c4e28d1e48196065705a2de60 Mon Sep 17 00:00:00 2001 From: "Felix S. Klock II" Date: Tue, 30 Jun 2015 08:09:25 -0400 Subject: [PATCH] build fragmented map earlier to make its dependencies clearer. --- src/librustc_borrowck/borrowck/mod.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/librustc_borrowck/borrowck/mod.rs b/src/librustc_borrowck/borrowck/mod.rs index 994393d06504..78e4945d4b55 100644 --- a/src/librustc_borrowck/borrowck/mod.rs +++ b/src/librustc_borrowck/borrowck/mod.rs @@ -166,6 +166,9 @@ fn borrowck_fn(this: &mut BorrowckCtxt, this.tcx, sp, id); + move_data::fragments::build_unfragmented_map(this, + &flowed_moves.move_data, + id); check_loans::check_loans(this, &loan_dfcx, @@ -175,10 +178,6 @@ fn borrowck_fn(this: &mut BorrowckCtxt, decl, body); - move_data::fragments::build_unfragmented_map(this, - &flowed_moves.move_data, - id); - visit::walk_fn(this, fk, decl, body, sp); }