build fragmented map earlier to make its dependencies clearer.

This commit is contained in:
Felix S. Klock II 2015-06-30 08:09:25 -04:00
parent 494ce37ffe
commit 22796c8bad

View file

@ -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);
}