[analyzer] Fix an uninitialized field.
authorArtem Dergachev <artem.dergachev@gmail.com>
Tue, 27 Feb 2018 02:53:30 +0000 (02:53 +0000)
committerArtem Dergachev <artem.dergachev@gmail.com>
Tue, 27 Feb 2018 02:53:30 +0000 (02:53 +0000)
Found by the analyzer!

llvm-svn: 326165

clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h

index ce81c98..fcc080a 100644 (file)
@@ -50,6 +50,7 @@ class FunctionSummariesTy {
     FunctionSummary() :
       TotalBasicBlocks(0),
       InlineChecked(0),
+      MayInline(0),
       TimesInlined(0) {}
   };