remove avx error on macos (#18923)
This commit is contained in:
@ -1470,6 +1470,7 @@ fn report_target_features() {
|
|||||||
// Validator binaries built on a machine with AVX support will generate invalid opcodes
|
// Validator binaries built on a machine with AVX support will generate invalid opcodes
|
||||||
// when run on machines without AVX causing a non-obvious process abort. Instead detect
|
// when run on machines without AVX causing a non-obvious process abort. Instead detect
|
||||||
// the mismatch and error cleanly.
|
// the mismatch and error cleanly.
|
||||||
|
#[allow(dead_code)]
|
||||||
#[target_feature(enable = "avx")]
|
#[target_feature(enable = "avx")]
|
||||||
unsafe fn check_avx() {
|
unsafe fn check_avx() {
|
||||||
if is_x86_feature_detected!("avx") {
|
if is_x86_feature_detected!("avx") {
|
||||||
|
Reference in New Issue
Block a user