We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 825ee28 commit cd500d2Copy full SHA for cd500d2
llvm/lib/Transforms/Utils/IRNormalizer.cpp
@@ -691,5 +691,7 @@ SetVector<int> IRNormalizer::getOutputFootprint(
691
PreservedAnalyses IRNormalizerPass::run(Function &F,
692
FunctionAnalysisManager &AM) const {
693
IRNormalizer{}.runOnFunction(F);
694
- return PreservedAnalyses::all();
+ PreservedAnalyses PA;
695
+ PA.preserveSet<CFGAnalyses>();
696
+ return PA;
697
}
0 commit comments