Skip to content

Commit

Permalink
Rollup merge of rust-lang#50779 - nox:untracked-options, r=rkruppe
Browse files Browse the repository at this point in the history
Make mutable_noalias and arg_align_attributes be tracked
  • Loading branch information
kennytm committed May 16, 2018
2 parents 39129a5 + ba2b4b1 commit 380066b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/librustc/session/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1239,9 +1239,9 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
"print the result of the translation item collection pass"),
mir_opt_level: usize = (1, parse_uint, [TRACKED],
"set the MIR optimization level (0-3, default: 1)"),
mutable_noalias: bool = (false, parse_bool, [UNTRACKED],
mutable_noalias: bool = (false, parse_bool, [TRACKED],
"emit noalias metadata for mutable references"),
arg_align_attributes: bool = (false, parse_bool, [UNTRACKED],
arg_align_attributes: bool = (false, parse_bool, [TRACKED],
"emit align metadata for reference arguments"),
dump_mir: Option<String> = (None, parse_opt_string, [UNTRACKED],
"dump MIR state at various points in translation"),
Expand Down

0 comments on commit 380066b

Please sign in to comment.