aboutsummaryrefslogtreecommitdiff
path: root/include/clang/StaticAnalyzer/AnalyzerOptions.h
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2012-08-30 19:26:56 +0000
committerTed Kremenek <kremenek@apple.com>2012-08-30 19:26:56 +0000
commit2fa9d72d4d23ccdcd4137946e5ebafac7a04f04c (patch)
treede5dfd9c812e9f8c5a260cb5937c18fec664aac0 /include/clang/StaticAnalyzer/AnalyzerOptions.h
parent3b8a04004afa46057a9af4afbd086be71d619793 (diff)
Rename 'MaxLoop' to 'maxBlockVisitOnPath' to reflect reality. We
should consider renaming the command line option as well. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162932 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/StaticAnalyzer/AnalyzerOptions.h')
-rw-r--r--include/clang/StaticAnalyzer/AnalyzerOptions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/StaticAnalyzer/AnalyzerOptions.h b/include/clang/StaticAnalyzer/AnalyzerOptions.h
index 5b5fe3ac11..6810346cbe 100644
--- a/include/clang/StaticAnalyzer/AnalyzerOptions.h
+++ b/include/clang/StaticAnalyzer/AnalyzerOptions.h
@@ -98,7 +98,7 @@ public:
unsigned MaxNodes;
/// \brief The maximum number of times the analyzer visits a block.
- unsigned MaxLoop;
+ unsigned maxBlockVisitOnPath;
unsigned ShowCheckerHelp : 1;