From: Ted Kremenek Date: Fri, 21 Sep 2012 17:55:34 +0000 (+0000) Subject: Re-enable faux-bodies by default. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=938869941e5a01049fb301fbf82f3caa4c7efa09;p=clang Re-enable faux-bodies by default. Try this again, now that r164392 is in place. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164393 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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); }