Skip to content

Commit 7e7d471

Browse files
committed
Enable frame pointers by default
1 parent c435af0 commit 7e7d471

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_session/src/options.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,7 @@ options! {
12841284
"emit bitcode in rlibs (default: yes)"),
12851285
extra_filename: String = (String::new(), parse_string, [UNTRACKED],
12861286
"extra data to put in each output filename"),
1287-
force_frame_pointers: Option<bool> = (None, parse_opt_bool, [TRACKED],
1287+
force_frame_pointers: Option<bool> = (Some(true), parse_opt_bool, [TRACKED],
12881288
"force use of the frame pointers"),
12891289
#[rustc_lint_opt_deny_field_access("use `Session::must_emit_unwind_tables` instead of this field")]
12901290
force_unwind_tables: Option<bool> = (None, parse_opt_bool, [TRACKED],

0 commit comments

Comments
 (0)