From 522b6ed8a7112064ca6e15ccb49c76fefae8ff71 Mon Sep 17 00:00:00 2001 From: Jeffrey Seyfried Date: Sun, 1 May 2016 23:49:26 +0000 Subject: [PATCH] Avoid keeping MTWT tables for save-analysis --- src/librustc_driver/driver.rs | 4 +--- 1 file changed, 1 insertion(+), 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 {