diff options
| author | Anthony Ramine <n.oxyde@gmail.com> | 2018-05-15 18:03:10 +0200 |
|---|---|---|
| committer | Anthony Ramine <n.oxyde@gmail.com> | 2018-05-15 18:03:10 +0200 |
| commit | ba2b4b1eedae6f72022150894f2b07a6f73c95a7 (patch) | |
| tree | 2bb39d8bb56f502fa43596b3306c351df00e9e69 | |
| parent | eca0da59850d4a9eef17c0e6c3795397102d88a3 (diff) | |
| download | rust-ba2b4b1eedae6f72022150894f2b07a6f73c95a7.tar.gz rust-ba2b4b1eedae6f72022150894f2b07a6f73c95a7.zip | |
Make mutable_noalias and arg_align_attributes be tracked
| -rw-r--r-- | src/librustc/session/config.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs index 245663494dd..489197e0381 100644 --- a/src/librustc/session/config.rs +++ b/src/librustc/session/config.rs @@ -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"), |
