about summary refs log tree commit diff
path: root/library/stdarch/crates/std_detect/tests/cpu-detection.rs
diff options
context:
space:
mode:
authorMahmut Bulut <vertexclique@gmail.com>2020-05-21 23:31:23 +0200
committerAmanieu d'Antras <amanieu@gmail.com>2020-05-29 19:05:48 +0100
commit17e4b29dfd21a5a7b8bf1c97aae7842181660a40 (patch)
tree531d7a8eb4f177a3da0800b10e73e9a6d6bf0192 /library/stdarch/crates/std_detect/tests/cpu-detection.rs
parenta50a216567620a3470cca8a36debbd54e253d9be (diff)
downloadrust-17e4b29dfd21a5a7b8bf1c97aae7842181660a40.tar.gz
rust-17e4b29dfd21a5a7b8bf1c97aae7842181660a40.zip
Implementation for Aarch64 TME intrinsics
Diffstat (limited to 'library/stdarch/crates/std_detect/tests/cpu-detection.rs')
-rw-r--r--library/stdarch/crates/std_detect/tests/cpu-detection.rs1
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 b59ed32e12d..a95b1e73930 100644
--- a/library/stdarch/crates/std_detect/tests/cpu-detection.rs
+++ b/library/stdarch/crates/std_detect/tests/cpu-detection.rs
@@ -45,6 +45,7 @@ fn aarch64_linux() {
     println!("rdm: {}", is_aarch64_feature_detected!("rdm"));
     println!("rcpc: {}", is_aarch64_feature_detected!("rcpc"));
     println!("dotprod: {}", is_aarch64_feature_detected!("dotprod"));
+    println!("tme: {}", is_aarch64_feature_detected!("tme"));
 }
 
 #[test]