Auto merge of #83050 - osa1:issue83048, r=matthewjasper

Run analyses before thir-tree dumps

Fixes #83048
This commit is contained in:
bors 2021-03-24 12:02:13 +00:00
commit 2e012ce681
4 changed files with 45 additions and 24 deletions

View file

@ -2274,7 +2274,7 @@ impl PpMode {
pub fn needs_analysis(&self) -> bool {
use PpMode::*;
matches!(*self, Mir | MirCFG)
matches!(*self, Mir | MirCFG | ThirTree)
}
}