Fix breakage on FrontendTest by initializing new field on constructor

llvm-svn: 346123
This commit is contained in:
Kadir Cetinkaya 2018-11-05 10:01:34 +00:00
parent d604ea53ed
commit 16950edcd4
1 changed files with 5 additions and 6 deletions

View File

@ -249,12 +249,11 @@ private:
public: public:
AnalyzerOptions() AnalyzerOptions()
: DisableAllChecks(false), ShowCheckerHelp(false), : DisableAllChecks(false), ShowCheckerHelp(false),
ShowEnabledCheckerList(false), AnalyzeAll(false), ShowEnabledCheckerList(false), ShowConfigOptionsList(false),
AnalyzerDisplayProgress(false), AnalyzeNestedBlocks(false), AnalyzeAll(false), AnalyzerDisplayProgress(false),
eagerlyAssumeBinOpBifurcation(false), TrimGraph(false), AnalyzeNestedBlocks(false), eagerlyAssumeBinOpBifurcation(false),
visualizeExplodedGraphWithGraphViz(false), TrimGraph(false), visualizeExplodedGraphWithGraphViz(false),
UnoptimizedCFG(false), UnoptimizedCFG(false), PrintStats(false), NoRetryExhausted(false) {}
PrintStats(false), NoRetryExhausted(false) {}
/// Interprets an option's string value as a boolean. The "true" string is /// Interprets an option's string value as a boolean. The "true" string is
/// interpreted as true and the "false" string is interpreted as false. /// interpreted as true and the "false" string is interpreted as false.