Skip to content

Commit 3db6dad

Browse files
committed
---
yaml --- r: 228177 b: refs/heads/try c: 147da94 h: refs/heads/master i: 228175: 7112280 v: v3
1 parent c5795e0 commit 3db6dad

File tree

2 files changed

+1
-17
lines changed

2 files changed

+1
-17
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: aca2057ed5fb7af3f8905b2bc01f72fa001c35c8
33
refs/heads/snap-stage3: 1af31d4974e33027a68126fa5a5a3c2c6491824f
4-
refs/heads/try: 04dfdd7403b8dd3f93e26af9a32d34b786e33324
4+
refs/heads/try: 147da94206f42a4b30fb1d401530519b58b4a050
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
66
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
77
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try/src/librustc_driver/lib.rs

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -481,21 +481,6 @@ pub fn commit_date_str() -> Option<&'static str> {
481481
option_env!("CFG_VER_DATE")
482482
}
483483

484-
/// Returns a stage string, such as "stage0".
485-
pub fn stage_str() -> Option<&'static str> {
486-
if cfg!(stage0) {
487-
Some("stage0")
488-
} else if cfg!(stage1) {
489-
Some("stage1")
490-
} else if cfg!(stage2) {
491-
Some("stage2")
492-
} else if cfg!(stage3) {
493-
Some("stage3")
494-
} else {
495-
None
496-
}
497-
}
498-
499484
/// Prints version information
500485
pub fn version(binary: &str, matches: &getopts::Matches) {
501486
let verbose = matches.opt_present("verbose");
@@ -508,7 +493,6 @@ pub fn version(binary: &str, matches: &getopts::Matches) {
508493
println!("commit-date: {}", unw(commit_date_str()));
509494
println!("host: {}", config::host_triple());
510495
println!("release: {}", unw(release_str()));
511-
println!("stage: {}", unw(stage_str()));
512496
}
513497
}
514498

0 commit comments

Comments
 (0)