Skip to content

Commit

Permalink
stdarch: update submodule.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyg13 committed Feb 2, 2020
1 parent e5b150e commit 9fa54e5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
6 changes: 0 additions & 6 deletions src/libstd/lib.rs
Expand Up @@ -335,12 +335,6 @@ extern crate libc;
#[allow(unused_extern_crates)]
extern crate unwind;

// Only needed for now for the `std_detect` module until that crate changes to
// use `cfg_if::cfg_if!`
#[macro_use]
#[cfg(not(test))]
extern crate cfg_if;

// During testing, this crate is not actually the "real" std library, but rather
// it links to the real std library, which was compiled from this same source
// code. So any lang items std defines are conditionally excluded (or else they
Expand Down
1 change: 1 addition & 0 deletions src/libstd/tests/run-time-detect.rs
Expand Up @@ -6,6 +6,7 @@
all(target_arch = "aarch64", any(target_os = "linux", target_os = "android")),
all(target_arch = "powerpc", target_os = "linux"),
all(target_arch = "powerpc64", target_os = "linux"),
any(target_arch = "x86", target_arch = "x86_64"),
),
feature(stdsimd)
)]
Expand Down
2 changes: 1 addition & 1 deletion src/stdarch
Submodule stdarch updated 64 files
+209 −0 .github/workflows/main.yml
+0 −31 QUESTIONS.md
+2 −3 README.md
+0 −76 ci/azure-install-rust.yml
+0 −221 ci/azure.yml
+2 −2 ci/docker/mipsel-unknown-linux-musl/Dockerfile
+2 −0 ci/dox.sh
+4 −4 ci/style.sh
+3 −3 crates/assert-instr-macro/Cargo.toml
+16 −14 crates/assert-instr-macro/src/lib.rs
+0 −1 crates/core_arch/Cargo.toml
+1 −3 crates/core_arch/README.md
+3 −0 crates/core_arch/rustfmt.toml
+3 −1 crates/core_arch/src/arm/neon.rs
+3 −3 crates/core_arch/src/mips/msa.rs
+0 −1 crates/core_arch/src/simd.rs
+30 −0 crates/core_arch/src/simd_llvm.rs
+1 −1 crates/core_arch/src/wasm32/simd128.rs
+9 −19 crates/core_arch/src/x86/avx.rs
+8 −24 crates/core_arch/src/x86/avx2.rs
+1 −7 crates/core_arch/src/x86/bswap.rs
+5 −12 crates/core_arch/src/x86/fma.rs
+46 −3 crates/core_arch/src/x86/mod.rs
+17 −0 crates/core_arch/src/x86/sse.rs
+9 −25 crates/core_arch/src/x86/sse2.rs
+9 −9 crates/core_arch/src/x86/sse41.rs
+1 −7 crates/core_arch/src/x86_64/bswap.rs
+17 −0 crates/core_arch/tests/cpu-detection.rs
+2 −2 crates/simd-test-macro/Cargo.toml
+4 −4 crates/std_detect/Cargo.toml
+1 −3 crates/std_detect/README.md
+22 −92 crates/std_detect/src/detect/arch/aarch64.rs
+14 −34 crates/std_detect/src/detect/arch/arm.rs
+7 −25 crates/std_detect/src/detect/arch/mips.rs
+7 −25 crates/std_detect/src/detect/arch/mips64.rs
+9 −36 crates/std_detect/src/detect/arch/powerpc.rs
+9 −36 crates/std_detect/src/detect/arch/powerpc64.rs
+129 −293 crates/std_detect/src/detect/arch/x86.rs
+71 −61 crates/std_detect/src/detect/cache.rs
+103 −0 crates/std_detect/src/detect/macros.rs
+60 −3 crates/std_detect/src/detect/mod.rs
+14 −5 crates/std_detect/src/detect/os/aarch64.rs
+1 −8 crates/std_detect/src/detect/os/freebsd/aarch64.rs
+3 −9 crates/std_detect/src/detect/os/freebsd/arm.rs
+22 −14 crates/std_detect/src/detect/os/freebsd/auxvec.rs
+1 −1 crates/std_detect/src/detect/os/freebsd/mod.rs
+3 −9 crates/std_detect/src/detect/os/freebsd/powerpc.rs
+13 −16 crates/std_detect/src/detect/os/linux/aarch64.rs
+10 −11 crates/std_detect/src/detect/os/linux/arm.rs
+15 −18 crates/std_detect/src/detect/os/linux/auxvec.rs
+2 −3 crates/std_detect/src/detect/os/linux/cpuinfo.rs
+2 −8 crates/std_detect/src/detect/os/linux/mips.rs
+2 −8 crates/std_detect/src/detect/os/linux/powerpc.rs
+3 −5 crates/std_detect/src/detect/os/other.rs
+55 −0 crates/std_detect/src/detect/os/windows/aarch64.rs
+17 −139 crates/std_detect/src/detect/os/x86.rs
+3 −6 crates/std_detect/src/lib.rs
+37 −12 crates/std_detect/tests/cpu-detection.rs
+158 −0 crates/std_detect/tests/x86-specific.rs
+65 −74 crates/stdarch-test/src/disassembly.rs
+1 −2 crates/stdarch-test/src/lib.rs
+1 −2 crates/stdarch-test/src/wasm.rs
+3 −3 crates/stdarch-verify/Cargo.toml
+20 −26 crates/stdarch-verify/src/lib.rs

0 comments on commit 9fa54e5

Please sign in to comment.