diff options
| author | bors <bors@rust-lang.org> | 2019-07-15 16:00:48 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-07-15 16:00:48 +0000 |
| commit | 4b65a86ebace8600c8e269e8bfe3365cdc460e68 (patch) | |
| tree | 0117491fffc657dfc3e7736fa0a903a52b049ca8 /src/libcore | |
| parent | 92b0f52584c9375505ecdefdd7855b93a5919d51 (diff) | |
| parent | d2c489a2722a6c0b2cbe9fc88d01bf896f3a07a5 (diff) | |
| download | rust-4b65a86ebace8600c8e269e8bfe3365cdc460e68.tar.gz rust-4b65a86ebace8600c8e269e8bfe3365cdc460e68.zip | |
Auto merge of #62687 - gnzlbg:stdarch, r=alexcrichton
Update stdsimd to stdarch The stdsimd repository no longer lives in `rust-lang-nursery/stdsimd` but now lives in `rust-lang/stdarch` instead. This PR updates the stdsimd submodule to the stdarch master branch.
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/lib.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs index 04253858bf7..fe149d634e2 100644 --- a/src/libcore/lib.rs +++ b/src/libcore/lib.rs @@ -118,6 +118,8 @@ #![feature(wasm_target_feature)] #![feature(avx512_target_feature)] #![feature(cmpxchg16b_target_feature)] +#![feature(rtm_target_feature)] +#![feature(f16c_target_feature)] #![feature(const_slice_len)] #![feature(const_str_as_bytes)] #![feature(const_str_len)] @@ -228,12 +230,12 @@ mod tuple; mod unit; // Pull in the `core_arch` crate directly into libcore. The contents of -// `core_arch` are in a different repository: rust-lang-nursery/stdsimd. +// `core_arch` are in a different repository: rust-lang/stdarch. // // `core_arch` depends on libcore, but the contents of this module are // set up in such a way that directly pulling it here works such that the // crate uses the this crate as its libcore. -#[path = "../stdsimd/crates/core_arch/src/mod.rs"] +#[path = "../stdarch/crates/core_arch/src/mod.rs"] #[allow(missing_docs, missing_debug_implementations, dead_code, unused_imports)] #[unstable(feature = "stdsimd", issue = "48556")] mod core_arch; |
