Skip to content

Commit 17eb392

Browse files
committed
Auto merge of rust-lang#52535 - alexcrichton:update-stdsimd, r=Mark-Simulacrum
Update stdsimd to undo an accidental stabilization Closes rust-lang#52403
2 parents f8f6e7c + d77defc commit 17eb392

File tree

4 files changed

+1
-9
lines changed

4 files changed

+1
-9
lines changed

src/libcore/lib.rs

-3
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,6 @@ macro_rules! vector_impl { ($([$f:ident, $($args:tt)*]),*) => { $($f!($($args)*)
244244
#[cfg(not(stage0))] // allow changes to how stdsimd works in stage0
245245
mod coresimd;
246246

247-
#[unstable(feature = "stdsimd", issue = "48556")]
248-
#[cfg(not(stage0))]
249-
pub use coresimd::simd;
250247
#[stable(feature = "simd_arch", since = "1.27.0")]
251248
#[cfg(not(stage0))]
252249
pub use coresimd::arch;

src/libstd/lib.rs

-4
Original file line numberDiff line numberDiff line change
@@ -532,12 +532,8 @@ mod stdsimd;
532532
#[cfg(not(stage0))]
533533
mod coresimd {
534534
pub use core::arch;
535-
pub use core::simd;
536535
}
537536

538-
#[unstable(feature = "stdsimd", issue = "48556")]
539-
#[cfg(all(not(stage0), not(test)))]
540-
pub use stdsimd::simd;
541537
#[stable(feature = "simd_arch", since = "1.27.0")]
542538
#[cfg(all(not(stage0), not(test)))]
543539
pub use stdsimd::arch;

src/stdsimd

src/test/rustdoc-js/multi-query.js

-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,5 @@ const EXPECTED = {
1515
{ 'path': 'std', 'name': 'str' },
1616
{ 'path': 'std', 'name': 'u8' },
1717
{ 'path': 'std::ffi', 'name': 'CStr' },
18-
{ 'path': 'std::simd', 'name': 'u8x2' },
1918
],
2019
};

0 commit comments

Comments
 (0)