From: NAKAMURA Takumi Date: Fri, 21 Sep 2012 12:00:42 +0000 (+0000) Subject: Revert r164364, "Flip "faux-bodies" in the analyzer on by default to flush out bugs." X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1cc9a80f8df979d5ff26739ebf3c134c4e6a4ed0;p=clang 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 --- 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); }