]> git.lizzy.rs Git - rust.git/commitdiff
Update stdsimd to undo an accidental stabilization
authorAlex Crichton <alex@alexcrichton.com>
Thu, 19 Jul 2018 14:01:37 +0000 (07:01 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Sat, 21 Jul 2018 05:34:09 +0000 (22:34 -0700)
Closes #52403

src/libcore/lib.rs
src/libstd/lib.rs
src/stdsimd
src/test/rustdoc-js/multi-query.js

index bbe6ae8619fec5bd27a154fe61afb5794b0a3664..72074e1dbce1873fa386585f05a1092691bb0fe8 100644 (file)
 #[cfg(not(stage0))] // allow changes to how stdsimd works in stage0
 mod coresimd;
 
-#[unstable(feature = "stdsimd", issue = "48556")]
-#[cfg(not(stage0))]
-pub use coresimd::simd;
 #[stable(feature = "simd_arch", since = "1.27.0")]
 #[cfg(not(stage0))]
 pub use coresimd::arch;
index fec14b8d67d359c0322a449439e000878fe99d60..3c01de2e997c9cbc4a82adf509bbb2e7db9ee41f 100644 (file)
@@ -532,12 +532,8 @@ pub mod task {
 #[cfg(not(stage0))]
 mod coresimd {
     pub use core::arch;
-    pub use core::simd;
 }
 
-#[unstable(feature = "stdsimd", issue = "48556")]
-#[cfg(all(not(stage0), not(test)))]
-pub use stdsimd::simd;
 #[stable(feature = "simd_arch", since = "1.27.0")]
 #[cfg(all(not(stage0), not(test)))]
 pub use stdsimd::arch;
index 886ff388fbbe8798e292431d824a5ff3c3458f4d..b9de11ab43090c71ff7ab159a479394df1f968ab 160000 (submodule)
@@ -1 +1 @@
-Subproject commit 886ff388fbbe8798e292431d824a5ff3c3458f4d
+Subproject commit b9de11ab43090c71ff7ab159a479394df1f968ab
index 3793ca6599c5f8aed767a49e4f92c1bab7a1fa7c..3f583a3600a67fdbbb28733d35ac47fdba52bbc0 100644 (file)
@@ -15,6 +15,5 @@ const EXPECTED = {
         { 'path': 'std', 'name': 'str' },
         { 'path': 'std', 'name': 'u8' },
         { 'path': 'std::ffi', 'name': 'CStr' },
-        { 'path': 'std::simd', 'name': 'u8x2' },
     ],
 };