Remove uses of stdarch_x86_avx512 · rust-lang/rust@fbc15c1 (original) (raw)

File tree

5 files changed

lines changed

5 files changed

lines changed

Original file line number Diff line number Diff line change
@@ -2,8 +2,6 @@
2 2 //@only-target: x86_64 i686
3 3 //@compile-flags: -C target-feature=+aes,+vaes,+avx512f
4 4
5 -#![feature(stdarch_x86_avx512)]
6 -
7 5 use core::mem::transmute;
8 6 #[cfg(target_arch = "x86")]
9 7 use std::arch::x86::*;
Original file line number Diff line number Diff line change
@@ -2,8 +2,6 @@
2 2 //@only-target: x86_64 i686
3 3 //@compile-flags: -C target-feature=+avx512f,+avx512vl,+avx512bitalg,+avx512vpopcntdq
4 4
5 -#![feature(stdarch_x86_avx512)]
6 -
7 5 #[cfg(target_arch = "x86")]
8 6 use std::arch::x86::*;
9 7 #[cfg(target_arch = "x86_64")]
Original file line number Diff line number Diff line change
@@ -6,7 +6,6 @@
6 6 // be interpreted as integers; signedness does not make sense for them, but
7 7 // __mXXXi happens to be defined in terms of signed integers.
8 8 #![allow(overflowing_literals)]
9 -#![feature(stdarch_x86_avx512)]
10 9
11 10 #[cfg(target_arch = "x86")]
12 11 use std::arch::x86::*;
Original file line number Diff line number Diff line change
@@ -8,7 +8,6 @@
8 8 // be interpreted as integers; signedness does not make sense for them, but
9 9 // __mXXXi happens to be defined in terms of signed integers.
10 10 #![allow(overflowing_literals)]
11 -#![feature(stdarch_x86_avx512)]
12 11
13 12 #[cfg(target_arch = "x86")]
14 13 use std::arch::x86::*;
Original file line number Diff line number Diff line change
@@ -2,8 +2,6 @@
2 2 //@ only-x86_64
3 3 //@ compile-flags: --crate-type=lib -C target-cpu=skylake
4 4
5 -#![feature(stdarch_x86_avx512)]
6 -
7 5 use std::arch::x86_64::*;
8 6
9 7 #[target_feature(enable = "avx512f")]