Skip to content

Commit 46677d2

Browse files
committed
Remove uses of stdarch_x86_avx512
1 parent d91c1af commit 46677d2

File tree

6 files changed

+0
-12
lines changed

6 files changed

+0
-12
lines changed

library/portable-simd/crates/core_simd/src/lib.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@
3030
any(target_arch = "powerpc", target_arch = "powerpc64"),
3131
feature(stdarch_powerpc)
3232
)]
33-
#![cfg_attr(
34-
all(target_arch = "x86_64", target_feature = "avx512f"),
35-
feature(stdarch_x86_avx512)
36-
)]
3733
#![warn(missing_docs, clippy::missing_inline_in_public_items)] // basically all items, really
3834
#![deny(
3935
unsafe_op_in_unsafe_fn,

src/tools/miri/tests/pass/shims/x86/intrinsics-x86-aes-vaes.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
//@only-target: x86_64 i686
33
//@compile-flags: -C target-feature=+aes,+vaes,+avx512f
44

5-
#![feature(stdarch_x86_avx512)]
6-
75
use core::mem::transmute;
86
#[cfg(target_arch = "x86")]
97
use std::arch::x86::*;

src/tools/miri/tests/pass/shims/x86/intrinsics-x86-avx512.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
//@only-target: x86_64 i686
33
//@compile-flags: -C target-feature=+avx512f,+avx512vl,+avx512bitalg,+avx512vpopcntdq
44

5-
#![feature(stdarch_x86_avx512)]
6-
75
#[cfg(target_arch = "x86")]
86
use std::arch::x86::*;
97
#[cfg(target_arch = "x86_64")]

src/tools/miri/tests/pass/shims/x86/intrinsics-x86-gfni.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
// be interpreted as integers; signedness does not make sense for them, but
77
// __mXXXi happens to be defined in terms of signed integers.
88
#![allow(overflowing_literals)]
9-
#![feature(stdarch_x86_avx512)]
109

1110
#[cfg(target_arch = "x86")]
1211
use std::arch::x86::*;

src/tools/miri/tests/pass/shims/x86/intrinsics-x86-vpclmulqdq.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// be interpreted as integers; signedness does not make sense for them, but
99
// __mXXXi happens to be defined in terms of signed integers.
1010
#![allow(overflowing_literals)]
11-
#![feature(stdarch_x86_avx512)]
1211

1312
#[cfg(target_arch = "x86")]
1413
use std::arch::x86::*;

tests/ui/asm/x86_64/evex512-implicit-feature.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
//@ only-x86_64
33
//@ compile-flags: --crate-type=lib -C target-cpu=skylake
44

5-
#![feature(stdarch_x86_avx512)]
6-
75
use std::arch::x86_64::*;
86

97
#[target_feature(enable = "avx512f")]

0 commit comments

Comments
 (0)