aboutsummaryrefslogtreecommitdiff
path: root/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2012-09-21 06:14:37 +0000
committerTed Kremenek <kremenek@apple.com>2012-09-21 06:14:37 +0000
commit85cb7a5696f93f8b98604d3e72525921a32537f0 (patch)
tree0610407c6c1f349af53f763d9e339207ecad1589 /lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
parentddc0c4814788dda4ef224cd4d22d07154a6ede49 (diff)
Flip "faux-bodies" in the analyzer on by default to flush out bugs.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164364 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/AnalyzerOptions.cpp')
-rw-r--r--lib/StaticAnalyzer/Core/AnalyzerOptions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp b/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
index cb7df6b3fd..04eb0ad97b 100644
--- a/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
+++ b/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
@@ -113,5 +113,5 @@ unsigned AnalyzerOptions::getAlwaysInlineSize() const {
}
bool AnalyzerOptions::shouldSynthesizeBodies() const {
- return getBooleanOption("faux-bodies", false);
+ return getBooleanOption("faux-bodies", true);
}