about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2018-12-11 03:22:10 +0000
committerbors <bors@rust-lang.org>2018-12-11 03:22:10 +0000
commit4c0116e13ffd4b84e6691cd3b1f09269c4e76728 (patch)
tree88ca46a47465bc18f188d5bf0e22f55fd92af7a5 /src/libcore
parentda1527cb06c7245f83ca51903ea2a27631820215 (diff)
parentb4110900bd82f03b1a5a8d777fa514e78adfadef (diff)
downloadrust-4c0116e13ffd4b84e6691cd3b1f09269c4e76728.tar.gz
rust-4c0116e13ffd4b84e6691cd3b1f09269c4e76728.zip
Auto merge of #56627 - alexcrichton:update-cargo, r=alexcrichton
Update Cargo submodule and its dependencies

Hopefully just another routine update!

So far this starts to enable the `std::arch` in stage0 builds of rustc.
This means that we may need stage0/not(stage0) in stdsimd itself, but
more and more code is starting to use `std::arch` so I think it's time
to start shifting the balance of work here.
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/lib.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs
index 1287e11cff4..a51674fbfc7 100644
--- a/src/libcore/lib.rs
+++ b/src/libcore/lib.rs
@@ -251,9 +251,7 @@ macro_rules! vector_impl { ($([$f:ident, $($args:tt)*]),*) => { $($f!($($args)*)
 #[path = "../stdsimd/coresimd/mod.rs"]
 #[allow(missing_docs, missing_debug_implementations, dead_code, unused_imports)]
 #[unstable(feature = "stdsimd", issue = "48556")]
-#[cfg(not(stage0))] // allow changes to how stdsimd works in stage0
 mod coresimd;
 
 #[stable(feature = "simd_arch", since = "1.27.0")]
-#[cfg(not(stage0))]
 pub use coresimd::arch;