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
diff --git a/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp b/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
index cb7df6b..04eb0ad 100644
--- a/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
+++ b/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
@@ -113,5 +113,5 @@
 }
 
 bool AnalyzerOptions::shouldSynthesizeBodies() const {
-  return getBooleanOption("faux-bodies", false);
+  return getBooleanOption("faux-bodies", true);
 }