You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if there are any CPUs that have one and not the other, but this could potentially be unsound:
#[target_feature(enable = "paca")]// enables both "paca" and "pacg"unsafefnfoo(){}ifis_aarch64_feature_detected!("paca"){// this would perhaps fail:// assert!(is_aarch64_feature_detected!("pacg"))unsafe{foo()}}