about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorJeffrey Seyfried <jeffrey.seyfried@gmail.com>2016-05-01 23:49:26 +0000
committerJeffrey Seyfried <jeffrey.seyfried@gmail.com>2016-05-02 00:19:22 +0000
commit522b6ed8a7112064ca6e15ccb49c76fefae8ff71 (patch)
treef23e092339bad3d4b35fc9b4223ff8ca30fb75f5 /src
parent298a1c056fd5a3507939581f0577aeb9f313bae2 (diff)
downloadrust-522b6ed8a7112064ca6e15ccb49c76fefae8ff71.tar.gz
rust-522b6ed8a7112064ca6e15ccb49c76fefae8ff71.zip
Avoid keeping MTWT tables for save-analysis
Diffstat (limited to 'src')
-rw-r--r--src/librustc_driver/driver.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/librustc_driver/driver.rs b/src/librustc_driver/driver.rs
index 3f0833cd670..980ff6c61e4 100644
--- a/src/librustc_driver/driver.rs
+++ b/src/librustc_driver/driver.rs
@@ -246,9 +246,7 @@ pub fn compile_input(sess: &Session,
 }
 
 fn keep_mtwt_tables(sess: &Session) -> bool {
-    sess.opts.debugging_opts.keep_mtwt_tables ||
-    sess.opts.debugging_opts.save_analysis ||
-    sess.opts.debugging_opts.save_analysis_csv
+    sess.opts.debugging_opts.keep_mtwt_tables
 }
 
 fn keep_ast(sess: &Session) -> bool {