diff --git a/library/std/tests/run-time-detect.rs b/library/std/tests/run-time-detect.rs index ffd9a04d8643a..04759d382a6fb 100644 --- a/library/std/tests/run-time-detect.rs +++ b/library/std/tests/run-time-detect.rs @@ -86,7 +86,7 @@ fn x86_all() { println!("fma: {:?}", is_x86_feature_detected!("fma")); println!("fxsr: {:?}", is_x86_feature_detected!("fxsr")); println!("lzcnt: {:?}", is_x86_feature_detected!("lzcnt")); - println!("movbe: {:?}", is_x86_feature_detected!("movbe")); + //println!("movbe: {:?}", is_x86_feature_detected!("movbe")); // movbe is unsupported as a target feature println!("pclmulqdq: {:?}", is_x86_feature_detected!("pclmulqdq")); println!("popcnt: {:?}", is_x86_feature_detected!("popcnt")); println!("rdrand: {:?}", is_x86_feature_detected!("rdrand"));