Skip to content

Commit 380066b

Browse files
committed
Rollup merge of rust-lang#50779 - nox:untracked-options, r=rkruppe
Make mutable_noalias and arg_align_attributes be tracked
2 parents 39129a5 + ba2b4b1 commit 380066b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc/session/config.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1239,9 +1239,9 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
12391239
"print the result of the translation item collection pass"),
12401240
mir_opt_level: usize = (1, parse_uint, [TRACKED],
12411241
"set the MIR optimization level (0-3, default: 1)"),
1242-
mutable_noalias: bool = (false, parse_bool, [UNTRACKED],
1242+
mutable_noalias: bool = (false, parse_bool, [TRACKED],
12431243
"emit noalias metadata for mutable references"),
1244-
arg_align_attributes: bool = (false, parse_bool, [UNTRACKED],
1244+
arg_align_attributes: bool = (false, parse_bool, [TRACKED],
12451245
"emit align metadata for reference arguments"),
12461246
dump_mir: Option<String> = (None, parse_opt_string, [UNTRACKED],
12471247
"dump MIR state at various points in translation"),

0 commit comments

Comments
 (0)