about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2018-05-15 18:03:10 +0200
committerAnthony Ramine <n.oxyde@gmail.com>2018-05-15 18:03:10 +0200
commitba2b4b1eedae6f72022150894f2b07a6f73c95a7 (patch)
tree2bb39d8bb56f502fa43596b3306c351df00e9e69
parenteca0da59850d4a9eef17c0e6c3795397102d88a3 (diff)
downloadrust-ba2b4b1eedae6f72022150894f2b07a6f73c95a7.tar.gz
rust-ba2b4b1eedae6f72022150894f2b07a6f73c95a7.zip
Make mutable_noalias and arg_align_attributes be tracked
-rw-r--r--src/librustc/session/config.rs4
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"),