Skip to content

Commit

Permalink
Add +sse4.2 due to rust-lang#128426
Browse files Browse the repository at this point in the history
  • Loading branch information
calebzulawski committed Aug 3, 2024
1 parent 9b26add commit 81a0a47
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//@ignore-target-s390x
//@ignore-target-thumbv7em
//@ignore-target-wasm32
//@compile-flags: -C target-feature=+aes,+vaes,+avx512f
//@compile-flags: -C target-feature=+aes,+vaes,+avx512f,+sse4.2

#![feature(avx512_target_feature, stdarch_x86_avx512)]

Expand Down
2 changes: 1 addition & 1 deletion src/tools/miri/tests/pass/shims/x86/intrinsics-x86-avx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//@ignore-target-s390x
//@ignore-target-thumbv7em
//@ignore-target-wasm32
//@compile-flags: -C target-feature=+avx
//@compile-flags: -C target-feature=+avx,+sse4.2

#[cfg(target_arch = "x86")]
use std::arch::x86::*;
Expand Down
2 changes: 1 addition & 1 deletion src/tools/miri/tests/pass/shims/x86/intrinsics-x86-avx2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//@ignore-target-s390x
//@ignore-target-thumbv7em
//@ignore-target-wasm32
//@compile-flags: -C target-feature=+avx2
//@compile-flags: -C target-feature=+avx2,+sse4.2

#[cfg(target_arch = "x86")]
use std::arch::x86::*;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//@ignore-target-s390x
//@ignore-target-thumbv7em
//@ignore-target-wasm32
//@compile-flags: -C target-feature=+avx512f,+avx512vl,+avx512bitalg,+avx512vpopcntdq
//@compile-flags: -C target-feature=+avx512f,+avx512vl,+avx512bitalg,+avx512vpopcntdq,+sse4.2

#![feature(avx512_target_feature)]
#![feature(stdarch_x86_avx512)]
Expand Down

0 comments on commit 81a0a47

Please sign in to comment.