diff options
| author | DevJPM <jean-pierre.muench@web.de> | 2020-10-25 17:27:22 +0100 |
|---|---|---|
| committer | DevJPM <jean-pierre.muench@web.de> | 2020-10-25 17:27:22 +0100 |
| commit | cd95e939bb9bef598be54067e93ac712d43fba71 (patch) | |
| tree | 0d480b771f1d0ddf25fcb8f5fc32237900d3d827 | |
| parent | 9feb567399205879c80f9165ac8cdbcf547211da (diff) | |
| download | rust-cd95e939bb9bef598be54067e93ac712d43fba71.tar.gz rust-cd95e939bb9bef598be54067e93ac712d43fba71.zip | |
Removed movbe from run-time-detect
`movbe` seems to not be a run-time detectable feature on x86. It has thus been removed from the list. It was only commented out to ease comparison against the full list.
| -rw-r--r-- | library/std/tests/run-time-detect.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/tests/run-time-detect.rs b/library/std/tests/run-time-detect.rs index ffd9a04d864..04759d382a6 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")); |
