Skip to content

Commit e6b1e5d

Browse files
committed
[DA] enable update_analyze_test_checks.py
1 parent b0ca543 commit e6b1e5d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

llvm/lib/Analysis/DependenceAnalysis.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,8 @@ void DependenceAnalysisWrapperPass::print(raw_ostream &OS,
216216

217217
PreservedAnalyses
218218
DependenceAnalysisPrinterPass::run(Function &F, FunctionAnalysisManager &FAM) {
219-
OS << "'Dependence Analysis' for function '" << F.getName() << "':\n";
219+
OS << "Printing analysis 'Dependence Analysis' for function '" << F.getName()
220+
<< "':\n";
220221
dumpExampleDependence(OS, &FAM.getResult<DependenceAnalysis>(F),
221222
FAM.getResult<ScalarEvolutionAnalysis>(F),
222223
NormalizeResults);

llvm/utils/UpdateTestChecks/common.py

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
SUPPORTED_ANALYSES = {
3636
"Branch Probability Analysis",
3737
"Cost Model Analysis",
38+
"Dependence Analysis",
3839
"Loop Access Analysis",
3940
"Scalar Evolution Analysis",
4041
}

0 commit comments

Comments
 (0)