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
rustc_codegen_llvm: Add a new 'pc' option to branch-protection
Add a new 'pc' option to -Z branch-protection for aarch64 that
enables the use of PC as a diversifier in PAC branch protection code.
When the pauth-lr target feature is enabled in combination
with -Z branch-protection=pac-ret,pc, the new 9.5-a instructions
(pacibsppc, retaasppc, etc) will be generated.
Copy file name to clipboardexpand all lines: compiler/rustc_session/src/options.rs
+6-3
Original file line number
Diff line number
Diff line change
@@ -442,8 +442,7 @@ mod desc {
442
442
pub(crate)const parse_polonius:&str = "either no value or `legacy` (the default), or `next`";
443
443
pub(crate)const parse_stack_protector:&str =
444
444
"one of (`none` (default), `basic`, `strong`, or `all`)";
445
-
pub(crate)const parse_branch_protection:&str =
446
-
"a `,` separated combination of `bti`, `b-key`, `pac-ret`, or `leaf`";
445
+
pub(crate)const parse_branch_protection:&str = "a `,` separated combination of `bti`, `pac-ret`, followed by a combination of `pc`, `b-key`, or `leaf`";
error: incorrect value `leaf` for unstable option `branch-protection` - a `,` separated combination of `bti`, `b-key`, `pac-ret`, or `leaf` was expected
1
+
error: incorrect value `leaf` for unstable option `branch-protection` - a `,` separated combination of `bti`, `pac-ret`, followed by a combination of `pc`, `b-key`, or `leaf` was expected
error: incorrect value `pc` for unstable option `branch-protection` - a `,` separated combination of `bti`, `pac-ret`, followed by a combination of `pc`, `b-key`, or `leaf` was expected
0 commit comments