diff options
| author | bors <bors@rust-lang.org> | 2015-11-11 09:15:24 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-11-11 09:15:24 +0000 |
| commit | 19bdf87e8c87ca51512f1f28acd395a8f4cbe76a (patch) | |
| tree | c69a200183697ea3d3041d73501ea9c8cd3be6cf | |
| parent | 8fbd2923f1981f2662c0c4631e962c958794537e (diff) | |
| parent | 0c327a78599e3fd596d391a497907ff9d8d0d5f9 (diff) | |
| download | rust-19bdf87e8c87ca51512f1f28acd395a8f4cbe76a.tar.gz rust-19bdf87e8c87ca51512f1f28acd395a8f4cbe76a.zip | |
Auto merge of #29741 - Manishearth:fix-flowgraph, r=alexcrichton
None
| -rw-r--r-- | src/librustc/session/config.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs index 75b758649a6..2f22f33e39d 100644 --- a/src/librustc/session/config.rs +++ b/src/librustc/session/config.rs @@ -560,13 +560,13 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options, print_move_fragments: bool = (false, parse_bool, "Print out move-fragment data for every fn"), flowgraph_print_loans: bool = (false, parse_bool, - "Include loan analysis data in --pretty flowgraph output"), + "Include loan analysis data in --unpretty flowgraph output"), flowgraph_print_moves: bool = (false, parse_bool, - "Include move analysis data in --pretty flowgraph output"), + "Include move analysis data in --unpretty flowgraph output"), flowgraph_print_assigns: bool = (false, parse_bool, - "Include assignment analysis data in --pretty flowgraph output"), + "Include assignment analysis data in --unpretty flowgraph output"), flowgraph_print_all: bool = (false, parse_bool, - "Include all dataflow analysis data in --pretty flowgraph output"), + "Include all dataflow analysis data in --unpretty flowgraph output"), print_region_graph: bool = (false, parse_bool, "Prints region inference graph. \ Use with RUST_REGION_GRAPH=help for more info"), |
