diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-10-01 18:28:19 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-10-01 18:28:19 +0000 |
commit | 4a5b35eeec9412fca288ff8e7d51fcc6f473b319 (patch) | |
tree | 80d0fefaf9b2e2dee96f91e654406119c30da666 /clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp | |
parent | 86917fdbe0a5bb617869922e586b83710bddb084 (diff) | |
download | bcm5719-llvm-4a5b35eeec9412fca288ff8e7d51fcc6f473b319.tar.gz bcm5719-llvm-4a5b35eeec9412fca288ff8e7d51fcc6f473b319.zip |
Have AnalyzerOptions::getBooleanOption() stick the matching config
string in the config table so that it can be dumped as part of the
config dumper. Add a test to show that these options are sticking
and can be cross-checked using FileCheck.
llvm-svn: 164954
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp b/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp index 09a0debaace..011d4c09a23 100644 --- a/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp +++ b/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp @@ -20,7 +20,7 @@ AnalysisManager::AnalysisManager(ASTContext &ctx, DiagnosticsEngine &diags, StoreManagerCreator storemgr, ConstraintManagerCreator constraintmgr, CheckerManager *checkerMgr, - const AnalyzerOptions &Options) + AnalyzerOptions &Options) : AnaCtxMgr(Options.UnoptimizedCFG, /*AddImplicitDtors=*/true, /*AddInitializers=*/true, |