Skip to content

Commit 98ab534

Browse files
committed
---
yaml --- r: 133111 b: refs/heads/dist-snap c: c8e86e9 h: refs/heads/master i: 133109: 188362b 133107: 4afb9e3 133103: 7191d08 v: v3
1 parent 6642792 commit 98ab534

File tree

400 files changed

+9861
-5266
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

400 files changed

+9861
-5266
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: 457a3c991d79b971be07fce75f9d0c12848fb37c
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/dist-snap: e72e4dfc74ca65d6b3e0d821b94a34764ab2c63d
9+
refs/heads/dist-snap: c8e86e977f5f95bd2f533c12ebf8107fb6f21a0f
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1212
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/mk/crates.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ DEPS_test := std getopts serialize rbml term time regex native:rust_test_helpers
9696
DEPS_time := std serialize
9797
DEPS_rand := core
9898
DEPS_url := std
99-
DEPS_log := std
99+
DEPS_log := std regex
100100
DEPS_regex := std
101101
DEPS_regex_macros = rustc syntax std regex
102102
DEPS_fmt_macros = std

branches/dist-snap/src/compiletest/procsrv.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pub fn run(lib_path: &str,
4747
match cmd.spawn() {
4848
Ok(mut process) => {
4949
for input in input.iter() {
50-
process.stdin.get_mut_ref().write(input.as_bytes()).unwrap();
50+
process.stdin.as_mut().unwrap().write(input.as_bytes()).unwrap();
5151
}
5252
let ProcessOutput { status, output, error } =
5353
process.wait_with_output().unwrap();
@@ -79,7 +79,7 @@ pub fn run_background(lib_path: &str,
7979
match cmd.spawn() {
8080
Ok(mut process) => {
8181
for input in input.iter() {
82-
process.stdin.get_mut_ref().write(input.as_bytes()).unwrap();
82+
process.stdin.as_mut().unwrap().write(input.as_bytes()).unwrap();
8383
}
8484

8585
Some(process)

branches/dist-snap/src/compiletest/runtest.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1614,7 +1614,7 @@ fn compile_cc_with_clang_and_save_bitcode(config: &Config, _props: &TestProps,
16141614
let testcc = testfile.with_extension("cc");
16151615
let proc_args = ProcArgs {
16161616
// FIXME (#9639): This needs to handle non-utf8 paths
1617-
prog: config.clang_path.get_ref().as_str().unwrap().to_string(),
1617+
prog: config.clang_path.as_ref().unwrap().as_str().unwrap().to_string(),
16181618
args: vec!("-c".to_string(),
16191619
"-emit-llvm".to_string(),
16201620
"-o".to_string(),
@@ -1630,7 +1630,7 @@ fn extract_function_from_bitcode(config: &Config, _props: &TestProps,
16301630
let bitcodefile = output_base_name(config, testfile).with_extension("bc");
16311631
let bitcodefile = append_suffix_to_stem(&bitcodefile, suffix);
16321632
let extracted_bc = append_suffix_to_stem(&bitcodefile, "extract");
1633-
let prog = config.llvm_bin_path.get_ref().join("llvm-extract");
1633+
let prog = config.llvm_bin_path.as_ref().unwrap().join("llvm-extract");
16341634
let proc_args = ProcArgs {
16351635
// FIXME (#9639): This needs to handle non-utf8 paths
16361636
prog: prog.as_str().unwrap().to_string(),
@@ -1647,7 +1647,7 @@ fn disassemble_extract(config: &Config, _props: &TestProps,
16471647
let bitcodefile = append_suffix_to_stem(&bitcodefile, suffix);
16481648
let extracted_bc = append_suffix_to_stem(&bitcodefile, "extract");
16491649
let extracted_ll = extracted_bc.with_extension("ll");
1650-
let prog = config.llvm_bin_path.get_ref().join("llvm-dis");
1650+
let prog = config.llvm_bin_path.as_ref().unwrap().join("llvm-dis");
16511651
let proc_args = ProcArgs {
16521652
// FIXME (#9639): This needs to handle non-utf8 paths
16531653
prog: prog.as_str().unwrap().to_string(),

branches/dist-snap/src/doc/guide-ffi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ extern crate libc;
477477

478478
#[cfg(target_os = "win32", target_arch = "x86")]
479479
#[link(name = "kernel32")]
480-
#[allow(non_snake_case_functions)]
480+
#[allow(non_snake_case)]
481481
extern "stdcall" {
482482
fn SetEnvironmentVariableA(n: *const u8, v: *const u8) -> libc::c_int;
483483
}

0 commit comments

Comments
 (0)