diff options
author | Anna Zaks <ganna@apple.com> | 2013-01-24 23:15:25 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2013-01-24 23:15:25 +0000 |
commit | 73f0563009a6715a5d3d41f664f5bfab5096d51f (patch) | |
tree | 5b904682c40adea95654c34db5e7cd29fac4e8d9 /include/clang/StaticAnalyzer/Core/AnalyzerOptions.h | |
parent | 33e9500784a6b8dc7f01ae5c85ebf0883fbc6662 (diff) |
[analyzer] refactor: access IPAMode through the accessor.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173384 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/StaticAnalyzer/Core/AnalyzerOptions.h')
-rw-r--r-- | include/clang/StaticAnalyzer/Core/AnalyzerOptions.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h b/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h index 24f33bcda1..25b2f71386 100644 --- a/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h +++ b/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h @@ -210,6 +210,10 @@ private: int getOptionAsInteger(StringRef Name, int DefaultVal); public: + AnalysisIPAMode getIPAMode() const { + return IPAMode; + } + /// Returns the option controlling which C++ member functions will be /// considered for inlining. /// |