about summary refs log tree commit diff
path: root/library/stdarch/crates/std_detect/tests/cpu-detection.rs
diff options
context:
space:
mode:
authorAdam Gemmell <adam.gemmell@arm.com>2022-02-10 14:59:40 +0000
committerGitHub <noreply@github.com>2022-02-10 14:59:40 +0000
commit3362d525c5cac6692a51543fd6c3a025b98547a5 (patch)
tree4b53b5c87bda663bfae7af71cef7589906a28c5a /library/stdarch/crates/std_detect/tests/cpu-detection.rs
parentc52d7f5b6631e60eeccdb6557a6f8c54c0981709 (diff)
downloadrust-3362d525c5cac6692a51543fd6c3a025b98547a5.tar.gz
rust-3362d525c5cac6692a51543fd6c3a025b98547a5.zip
Split aarch64 `pauth` feature into `paca` and `pacg` (#1259)
Diffstat (limited to 'library/stdarch/crates/std_detect/tests/cpu-detection.rs')
-rw-r--r--library/stdarch/crates/std_detect/tests/cpu-detection.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/library/stdarch/crates/std_detect/tests/cpu-detection.rs b/library/stdarch/crates/std_detect/tests/cpu-detection.rs
index adbe4fa9a77..ca8bf28f448 100644
--- a/library/stdarch/crates/std_detect/tests/cpu-detection.rs
+++ b/library/stdarch/crates/std_detect/tests/cpu-detection.rs
@@ -55,7 +55,8 @@ fn aarch64_linux() {
     println!("flagm: {}", is_aarch64_feature_detected!("flagm"));
     println!("ssbs: {}", is_aarch64_feature_detected!("ssbs"));
     println!("sb: {}", is_aarch64_feature_detected!("sb"));
-    println!("pauth: {}", is_aarch64_feature_detected!("pauth"));
+    println!("paca: {}", is_aarch64_feature_detected!("paca"));
+    println!("pacg: {}", is_aarch64_feature_detected!("pacg"));
     println!("dpb: {}", is_aarch64_feature_detected!("dpb"));
     println!("dpb2: {}", is_aarch64_feature_detected!("dpb2"));
     println!("sve2: {}", is_aarch64_feature_detected!("sve2"));