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
Auto merge of rust-lang#132661 - matthiaskrgr:rollup-npytbl6, r=matthiaskrgr
Rollup of 8 pull requests
Successful merges:
- rust-lang#132259 (rustc_codegen_llvm: Add a new 'pc' option to branch-protection)
- rust-lang#132409 (CI: switch 7 linux jobs to free runners)
- rust-lang#132498 (Suggest fixing typos and let bindings at the same time)
- rust-lang#132524 (chore(style): sync submodule exclusion list between tidy and rustfmt)
- rust-lang#132567 (Properly suggest `E::assoc` when we encounter `E::Variant::assoc`)
- rust-lang#132571 (add const_eval_select macro to reduce redundancy)
- rust-lang#132637 (Do not filter empty lint passes & re-do CTFE pass)
- rust-lang#132642 (Add documentation on `ast::Attribute`)
r? `@ghost`
`@rustbot` modify labels: rollup
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`";
0 commit comments