Skip to content

Commit 522b6ed

Browse files
committed
Avoid keeping MTWT tables for save-analysis
1 parent 298a1c0 commit 522b6ed

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/librustc_driver/driver.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -246,9 +246,7 @@ pub fn compile_input(sess: &Session,
246246
}
247247

248248
fn keep_mtwt_tables(sess: &Session) -> bool {
249-
sess.opts.debugging_opts.keep_mtwt_tables ||
250-
sess.opts.debugging_opts.save_analysis ||
251-
sess.opts.debugging_opts.save_analysis_csv
249+
sess.opts.debugging_opts.keep_mtwt_tables
252250
}
253251

254252
fn keep_ast(sess: &Session) -> bool {

0 commit comments

Comments
 (0)