commit | 1d26f48dc2eea1c07431ca1519d7034a21b9bcff | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Mon Oct 24 01:32:45 2011 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Mon Oct 24 01:32:45 2011 +0000 |
tree | 41d69b4ac2473036f1dcccf82fe01922e94f6de2 | |
parent | 0b64ba926752110cff1344a46b36e29396cc4d25 [diff] [blame] |
Rename AnalysisContext to AnalysisDeclContext. Not only is this name more accurate, but it frees up the name AnalysisContext for other uses. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142782 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp b/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp index cd977bf..66b3290 100644 --- a/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp
@@ -54,7 +54,7 @@ // Get the CFG and the Decl of this block C = LC->getCFG(); - D = LC->getAnalysisContext()->getDecl(); + D = LC->getAnalysisDeclContext()->getDecl(); unsigned total = 0, unreachable = 0;