about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2017-12-02 11:51:45 +0100
committerest31 <MTest31@outlook.com>2017-12-02 13:56:32 +0100
commit60a842f5291391ba4a67048f9e3d63312032df77 (patch)
treefe538ab7a43c920466e82a7e6354dd6e352fa4b3 /src
parent8bcbf91a86dd51e733c20d91b281d2e7f99ac146 (diff)
downloadrust-60a842f5291391ba4a67048f9e3d63312032df77.tar.gz
rust-60a842f5291391ba4a67048f9e3d63312032df77.zip
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 6dade7694ab..b8a05cd0fe6 100644
--- a/src/librustc/session/config.rs
+++ b/src/librustc/session/config.rs
@@ -1047,8 +1047,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],
@@ -2672,8 +2670,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;