1
Fork 0

Run analyses before thir-tree dumps

Fixes #83048
This commit is contained in:
Ömer Sinan Ağacan 2021-03-12 10:02:51 +03:00
parent 77b996e1c6
commit b24902ea18
4 changed files with 45 additions and 24 deletions

View file

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