Clean up build warning
This commit is contained in:
parent
54ef065cc8
commit
17a173ebb5
|
@ -1408,15 +1408,9 @@ fn report_target_features() {
|
|||
not(target_os = "macos")
|
||||
))]
|
||||
{
|
||||
unsafe { check_avx() };
|
||||
}
|
||||
}
|
||||
|
||||
// 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
|
||||
// the mismatch and error cleanly.
|
||||
#[target_feature(enable = "avx")]
|
||||
unsafe fn check_avx() {
|
||||
// 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
|
||||
// the mismatch and error cleanly.
|
||||
if is_x86_feature_detected!("avx") {
|
||||
info!("AVX detected");
|
||||
} else {
|
||||
|
@ -1425,6 +1419,7 @@ unsafe fn check_avx() {
|
|||
);
|
||||
abort();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Get the activated stake percentage (based on the provided bank) that is visible in gossip
|
||||
|
|
Loading…
Reference in New Issue