Skip to content

Commit c262433

Browse files
committed
---
yaml --- r: 194365 b: refs/heads/tmp c: c5c3de0 h: refs/heads/master i: 194363: e5c9d77 v: v3
1 parent 1e5c9c3 commit c262433

File tree

7 files changed

+4
-7
lines changed

7 files changed

+4
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
3434
refs/heads/beta: a3b13610c5b93d9ada072471a001a5613df6a960
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3636
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
37-
refs/heads/tmp: 253992eb38569f7f80cc59537013b3d9d58aede6
37+
refs/heads/tmp: c5c3de0cf4efba1517009ee6ef2da66f03b490b9
3838
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3939
refs/tags/homu-tmp: 28a0b25f424090255966273994748a9f9901059f
4040
refs/heads/gate: 97c84447b65164731087ea82685580cc81424412

branches/tmp/src/librustc_back/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
#![feature(collections)]
3737
#![feature(core)]
3838
#![feature(old_fs)]
39-
#![feature(hash)]
4039
#![feature(int_uint)]
4140
#![feature(io)]
4241
#![feature(old_io)]

branches/tmp/src/librustc_trans/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
#![feature(unicode)]
4141
#![feature(path_ext)]
4242
#![feature(fs)]
43-
#![feature(hash)]
4443
#![feature(convert)]
4544
#![feature(path_relative_from)]
4645

branches/tmp/src/libstd/env.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ mod tests {
834834
fn split_paths_windows() {
835835
fn check_parse(unparsed: &str, parsed: &[&str]) -> bool {
836836
split_paths(unparsed).collect::<Vec<_>>() ==
837-
parsed.iter().map(|s| PathBuf::new(*s)).collect::<Vec<_>>()
837+
parsed.iter().map(|s| PathBuf::from(*s)).collect::<Vec<_>>()
838838
}
839839

840840
assert!(check_parse("", &mut [""]));

branches/tmp/src/libstd/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@
111111
#![feature(box_syntax)]
112112
#![feature(collections)]
113113
#![feature(core)]
114-
#![feature(hash)]
115114
#![feature(lang_items)]
116115
#![feature(libc)]
117116
#![feature(linkage, thread_local, asm)]
@@ -124,7 +123,6 @@
124123
#![feature(unsafe_destructor)]
125124
#![feature(unsafe_no_drop_flag)]
126125
#![feature(macro_reexport)]
127-
#![feature(hash)]
128126
#![feature(int_uint)]
129127
#![feature(unique)]
130128
#![feature(convert)]

branches/tmp/src/test/debuginfo/function-prologue-stepping-regular.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@
126126
// lldb-command:continue
127127

128128
#![allow(unused_variables)]
129+
#![feature(old_io)]
129130
#![omit_gdb_pretty_printer_section]
130131

131132
fn immediate_args(a: int, b: bool, c: f64) {

branches/tmp/src/test/run-pass/out-of-stack-no-split.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
//ignore-dragonfly
1616
//ignore-bitrig
1717

18-
#![feature(asm)]
18+
#![feature(asm, old_io)]
1919

2020
use std::old_io::process::Command;
2121
use std::env;

0 commit comments

Comments
 (0)