Skip to content

Commit

Permalink
Fix tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark-Simulacrum committed Jul 16, 2017
1 parent f3d4c6d commit d412ee7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/bootstrap/compile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -852,9 +852,10 @@ impl Step for Assemble {
let compiler = build_compiler;
for stage in 0..min(target_compiler.stage, builder.flags.keep_stage.unwrap()) {
let target_compiler = builder.compiler(stage, target_compiler.host);
builder.ensure(StdLink { compiler, target_compiler, target: target_compiler.host });
builder.ensure(TestLink { compiler, target_compiler, target: target_compiler.host });
builder.ensure(RustcLink { compiler, target_compiler, target: target_compiler.host });
let target = target_compiler.host;
builder.ensure(StdLink { compiler, target_compiler, target });
builder.ensure(TestLink { compiler, target_compiler, target });
builder.ensure(RustcLink { compiler, target_compiler, target });
}
} else {
builder.ensure(Rustc { compiler: build_compiler, target: target_compiler.host });
Expand Down

0 comments on commit d412ee7

Please sign in to comment.