diff options
| author | Douglas Campos <qmx@qmx.me> | 2018-05-25 22:17:04 +0000 |
|---|---|---|
| committer | Santiago Pastorino <spastorino@gmail.com> | 2018-05-29 10:19:46 -0300 |
| commit | 4f88283869c6f1c69ed4fd56d2e9a1b065401cd4 (patch) | |
| tree | 160ab10349c8e4730b796b0f9d962c4e69e46f38 | |
| parent | 422fe7c8e80fdf56722396a0e5048654f99e5909 (diff) | |
expose -Zpolonius flag
| -rw-r--r-- | src/librustc/session/config.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs index b3f1b9c8e62..755b4af1a3a 100644 --- a/src/librustc/session/config.rs +++ b/src/librustc/session/config.rs @@ -1296,6 +1296,8 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options, "dump facts from NLL analysis into side files"), disable_nll_user_type_assert: bool = (false, parse_bool, [UNTRACKED], "disable user provided type assertion in NLL"), + polonius: bool = (false, parse_bool, [UNTRACKED], + "enable polonius-based borrow-checker"), codegen_time_graph: bool = (false, parse_bool, [UNTRACKED], "generate a graphical HTML report of time spent in codegen and LLVM"), thinlto: Option<bool> = (None, parse_opt_bool, [TRACKED], |
