diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-09-21 12:00:42 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-09-21 12:00:42 +0000 |
commit | 1cc9a80f8df979d5ff26739ebf3c134c4e6a4ed0 (patch) | |
tree | e9a4a4bf5730f298e9b5c00307162f30507c62a5 /lib/StaticAnalyzer/Core/AnalyzerOptions.cpp | |
parent | 7821e0756744018a34c533f30cdabe62a72d4e4a (diff) |
Revert r164364, "Flip "faux-bodies" in the analyzer on by default to flush out bugs."
It crashed test/Analysis/Output/blocks.m on some hosts.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164368 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/AnalyzerOptions.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Core/AnalyzerOptions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp b/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp index 04eb0ad97b..cb7df6b3fd 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", true); + return getBooleanOption("faux-bodies", false); } |