forked from OSchip/llvm-project
Fix breakage on FrontendTest by initializing new field on constructor
llvm-svn: 346123
This commit is contained in:
parent
d604ea53ed
commit
16950edcd4
|
@ -249,12 +249,11 @@ private:
|
|||
public:
|
||||
AnalyzerOptions()
|
||||
: DisableAllChecks(false), ShowCheckerHelp(false),
|
||||
ShowEnabledCheckerList(false), AnalyzeAll(false),
|
||||
AnalyzerDisplayProgress(false), AnalyzeNestedBlocks(false),
|
||||
eagerlyAssumeBinOpBifurcation(false), TrimGraph(false),
|
||||
visualizeExplodedGraphWithGraphViz(false),
|
||||
UnoptimizedCFG(false),
|
||||
PrintStats(false), NoRetryExhausted(false) {}
|
||||
ShowEnabledCheckerList(false), ShowConfigOptionsList(false),
|
||||
AnalyzeAll(false), AnalyzerDisplayProgress(false),
|
||||
AnalyzeNestedBlocks(false), eagerlyAssumeBinOpBifurcation(false),
|
||||
TrimGraph(false), visualizeExplodedGraphWithGraphViz(false),
|
||||
UnoptimizedCFG(false), PrintStats(false), NoRetryExhausted(false) {}
|
||||
|
||||
/// Interprets an option's string value as a boolean. The "true" string is
|
||||
/// interpreted as true and the "false" string is interpreted as false.
|
||||
|
|
Loading…
Reference in New Issue