diff options
| author | Caleb Zulawski <caleb.zulawski@gmail.com> | 2023-01-05 12:54:07 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-05 17:54:07 +0000 |
| commit | 39c2524e1b0ee07715d51bab1f9702b9b900a3d6 (patch) | |
| tree | 65165d854433f8384527d52379ebd0a880155569 /library/stdarch/crates/std_detect/tests/cpu-detection.rs | |
| parent | ee060659d9b13763ba9ce8967f4cd7e36656a5e8 (diff) | |
| download | rust-39c2524e1b0ee07715d51bab1f9702b9b900a3d6.tar.gz rust-39c2524e1b0ee07715d51bab1f9702b9b900a3d6.zip | |
Detect MOVBE (#1356)
Diffstat (limited to 'library/stdarch/crates/std_detect/tests/cpu-detection.rs')
| -rw-r--r-- | library/stdarch/crates/std_detect/tests/cpu-detection.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/stdarch/crates/std_detect/tests/cpu-detection.rs b/library/stdarch/crates/std_detect/tests/cpu-detection.rs index 02ad77a633c..b5cabd5040f 100644 --- a/library/stdarch/crates/std_detect/tests/cpu-detection.rs +++ b/library/stdarch/crates/std_detect/tests/cpu-detection.rs @@ -152,6 +152,7 @@ fn x86_all() { println!("abm: {:?}", is_x86_feature_detected!("abm")); println!("lzcnt: {:?}", is_x86_feature_detected!("lzcnt")); println!("tbm: {:?}", is_x86_feature_detected!("tbm")); + println!("movbe: {:?}", is_x86_feature_detected!("movbe")); println!("popcnt: {:?}", is_x86_feature_detected!("popcnt")); println!("fxsr: {:?}", is_x86_feature_detected!("fxsr")); println!("xsave: {:?}", is_x86_feature_detected!("xsave")); |
