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:
|
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.
|
||||||
|
|
Loading…
Reference in New Issue