about summary refs log tree commit diff
path: root/src/libcore/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2018-12-08 03:06:54 -0800
committerAlex Crichton <alex@alexcrichton.com>2018-12-10 13:45:22 -0800
commitb4110900bd82f03b1a5a8d777fa514e78adfadef (patch)
treec60123271a191fbfcddccb63e4687bebe0e4982a /src/libcore/lib.rs
parent1137d29d5e551e377579c5a601fe7c444057d00c (diff)
downloadrust-b4110900bd82f03b1a5a8d777fa514e78adfadef.tar.gz
rust-b4110900bd82f03b1a5a8d777fa514e78adfadef.zip
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/lib.rs')
-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;