Skip to content

Commit 598e265

Browse files
compiler: Accept -Cforce-frame-pointers=always
Also lands behind -Zunstable-options, for now. Take the opportunity to do some mild cleanup.
1 parent 7d160ae commit 598e265

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

compiler/rustc_session/src/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2528,7 +2528,7 @@ pub fn build_session_options(early_dcx: &mut EarlyDiagCtxt, matches: &getopts::M
25282528
&& cg.force_frame_pointers == FramePointer::NonLeaf
25292529
{
25302530
early_dcx.early_fatal(
2531-
"`-Cforce-frame-pointers=non-leaf` also requires `-Zunstable-options` \
2531+
"`-Cforce-frame-pointers=non-leaf` or `always` also requires `-Zunstable-options` \
25322532
and a nightly compiler",
25332533
)
25342534
}

compiler/rustc_session/src/options.rs

+9-10
Original file line numberDiff line numberDiff line change
@@ -373,8 +373,7 @@ mod desc {
373373
pub const parse_opt_comma_list: &str = parse_comma_list;
374374
pub const parse_number: &str = "a number";
375375
pub const parse_opt_number: &str = parse_number;
376-
pub const parse_frame_pointer: &str =
377-
"one of `true`/`yes`/`on`, `false`/`no`/`off`, or (with -Zunstable-options) `non-leaf`";
376+
pub const parse_frame_pointer: &str = "one of `true`/`yes`/`on`, `false`/`no`/`off`, or (with -Zunstable-options) `non-leaf` or `always`";
378377
pub const parse_threads: &str = parse_number;
379378
pub const parse_time_passes_format: &str = "`text` (default) or `json`";
380379
pub const parse_passes: &str = "a space-separated list of passes, or `all`";
@@ -674,15 +673,15 @@ mod parse {
674673
}
675674

676675
pub(crate) fn parse_frame_pointer(slot: &mut FramePointer, v: Option<&str>) -> bool {
677-
let mut boolish = false;
678-
let mut is_parsed = parse_bool(&mut boolish, v);
679-
if boolish & is_parsed {
680-
*slot = FramePointer::Always;
681-
} else if v == Some("non-leaf") {
682-
is_parsed = true;
683-
*slot = FramePointer::NonLeaf;
676+
let mut yes = false;
677+
match v {
678+
Some(_) if parse_bool(&mut yes, v) && yes => slot.ratchet(FramePointer::Always),
679+
Some(_) if parse_bool(&mut yes, v) => slot.ratchet(FramePointer::MayOmit),
680+
Some("always") => slot.ratchet(FramePointer::Always),
681+
Some("non-leaf") => slot.ratchet(FramePointer::NonLeaf),
682+
_ => return false,
684683
};
685-
is_parsed
684+
true
686685
}
687686

688687
pub(crate) fn parse_passes(slot: &mut Passes, v: Option<&str>) -> bool {

0 commit comments

Comments
 (0)