about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorbjorn3 <bjorn3@users.noreply.github.com>2018-06-30 10:45:14 +0200
committerbjorn3 <bjorn3@users.noreply.github.com>2018-07-07 10:56:07 +0200
commitff12beb8756f028d44f898a91960ed70102a4792 (patch)
treeb1a12ec881a468e12040479d16923c0ae6aba52a /src/libcore
parent163cb572a491cb3eb7f2c792415c93840cb7e9c0 (diff)
downloadrust-ff12beb8756f028d44f898a91960ed70102a4792.tar.gz
rust-ff12beb8756f028d44f898a91960ed70102a4792.zip
Revert changes to bootstrap, rustc_driver and fix {core,std}simd
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/lib.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs
index 0971f50913c..bbe6ae8619f 100644
--- a/src/libcore/lib.rs
+++ b/src/libcore/lib.rs
@@ -241,13 +241,12 @@ 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")]
-// allow changes to how stdsimd works in stage0 and don't use whithout LLVM
-#[cfg(all(not(stage0), codegen_backend="llvm"))]
+#[cfg(not(stage0))] // allow changes to how stdsimd works in stage0
 mod coresimd;
 
 #[unstable(feature = "stdsimd", issue = "48556")]
-#[cfg(all(not(stage0), codegen_backend="llvm"))]
+#[cfg(not(stage0))]
 pub use coresimd::simd;
 #[stable(feature = "simd_arch", since = "1.27.0")]
-#[cfg(all(not(stage0), codegen_backend="llvm"))]
+#[cfg(not(stage0))]
 pub use coresimd::arch;