about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2017-12-03 17:43:46 -0500
committerGitHub <noreply@github.com>2017-12-03 17:43:46 -0500
commit697c5ba0d93ca877acafedfa1f9588ae720ac418 (patch)
treec9b59fe6c0815df8eac27c21af999c138c2ffc15 /src
parentfcf1e736479463f0333896effba1b86944ba15de (diff)
parent60a842f5291391ba4a67048f9e3d63312032df77 (diff)
downloadrust-697c5ba0d93ca877acafedfa1f9588ae720ac418.tar.gz
rust-697c5ba0d93ca877acafedfa1f9588ae720ac418.zip
Rollup merge of #46442 - est31:master, r=alexcrichton
Remove an unstable and dead compiler flag

The last use has been removed by commit fb9ca16b3b7cf034f885de28879c4d50261ce3ef .
Diffstat (limited to 'src')
-rw-r--r--src/librustc/session/config.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs
index d1adec26445..70b63886084 100644
--- a/src/librustc/session/config.rs
+++ b/src/librustc/session/config.rs
@@ -1053,8 +1053,6 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
     save_analysis: bool = (false, parse_bool, [UNTRACKED],
         "write syntax and type analysis (in JSON format) information, in \
          addition to normal output"),
-    print_move_fragments: bool = (false, parse_bool, [UNTRACKED],
-        "print out move-fragment data for every fn"),
     flowgraph_print_loans: bool = (false, parse_bool, [UNTRACKED],
         "include loan analysis data in --unpretty flowgraph output"),
     flowgraph_print_moves: bool = (false, parse_bool, [UNTRACKED],
@@ -2684,8 +2682,6 @@ mod tests {
         assert_eq!(reference.dep_tracking_hash(), opts.dep_tracking_hash());
         opts.debugging_opts.save_analysis = true;
         assert_eq!(reference.dep_tracking_hash(), opts.dep_tracking_hash());
-        opts.debugging_opts.print_move_fragments = true;
-        assert_eq!(reference.dep_tracking_hash(), opts.dep_tracking_hash());
         opts.debugging_opts.flowgraph_print_loans = true;
         assert_eq!(reference.dep_tracking_hash(), opts.dep_tracking_hash());
         opts.debugging_opts.flowgraph_print_moves = true;