Skip to content

Commit e5e1a06

Browse files
committed
---
yaml --- r: 277981 b: refs/heads/auto c: aaf56d7 h: refs/heads/master i: 277979: a8a1fa2
1 parent 4f606c5 commit e5e1a06

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
88
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
99
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1010
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
11-
refs/heads/auto: 52a2b33a4b1c9f10e7034a758d4dff4f53129a49
11+
refs/heads/auto: aaf56d7086e6dc5e436ec7064898f90295908312
1212
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1313
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
1414
refs/tags/0.2: 1754d02027f2924bed83b0160ee340c7f41d5ea1

branches/auto/src/librustc_driver/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,10 @@ impl<'a> CompilerCalls<'a> for RustcDefaultCalls {
447447
.and_then(|| RustcDefaultCalls::list_metadata(sess, matches, input))
448448
}
449449

450-
fn build_controller(&mut self, sess: &Session, matches: &getopts::Matches) -> CompileController<'a> {
450+
fn build_controller(&mut self,
451+
sess: &Session,
452+
matches: &getopts::Matches)
453+
-> CompileController<'a> {
451454
let mut control = CompileController::basic();
452455

453456
if let Some((ppm, opt_uii)) = parse_pretty(sess, matches) {

branches/auto/src/librustc_driver/pretty.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,9 @@ fn print_with_analysis<'tcx, 'a: 'tcx>(sess: &'a Session,
949949
});
950950
match ppm {
951951
PpmMir => write_mir_pretty(tcx, iter::once((&nodeid, mir)), &mut out),
952-
PpmMirCFG => write_mir_graphviz(tcx, iter::once((&nodeid, mir)), &mut out),
952+
PpmMirCFG => {
953+
write_mir_graphviz(tcx, iter::once((&nodeid, mir)), &mut out)
954+
}
953955
_ => unreachable!(),
954956
}?;
955957
} else {

branches/auto/src/test/run-pass-fulldeps/compiler-calls.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,10 @@ impl<'a> CompilerCalls<'a> for TestCalls {
6969
panic!("This shouldn't happen");
7070
}
7171

72-
fn build_controller(&mut self, _: &Session, _: &getopts::Matches) -> driver::CompileController<'a> {
72+
fn build_controller(&mut self,
73+
_: &Session,
74+
_: &getopts::Matches)
75+
-> driver::CompileController<'a> {
7376
panic!("This shouldn't be called");
7477
}
7578
}

0 commit comments

Comments
 (0)