Changeset View
Changeset View
Standalone View
Standalone View
lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
Show First 20 Lines • Show All 182 Lines • ▼ Show 20 Lines | return getBooleanOption(IncludeLifetimeInCFG, "cfg-lifetime", | ||||
/* Default = */ false); | /* Default = */ false); | ||||
} | } | ||||
bool AnalyzerOptions::includeLoopExitInCFG() { | bool AnalyzerOptions::includeLoopExitInCFG() { | ||||
return getBooleanOption(IncludeLoopExitInCFG, "cfg-loopexit", | return getBooleanOption(IncludeLoopExitInCFG, "cfg-loopexit", | ||||
/* Default = */ false); | /* Default = */ false); | ||||
} | } | ||||
bool AnalyzerOptions::includeScopesInCFG() { | |||||
return getBooleanOption(IncludeScopesInCFG, | |||||
"cfg-scopes", | |||||
/* Default = */ false); | |||||
} | |||||
bool AnalyzerOptions::mayInlineCXXStandardLibrary() { | bool AnalyzerOptions::mayInlineCXXStandardLibrary() { | ||||
return getBooleanOption(InlineCXXStandardLibrary, | return getBooleanOption(InlineCXXStandardLibrary, | ||||
"c++-stdlib-inlining", | "c++-stdlib-inlining", | ||||
/*Default=*/true); | /*Default=*/true); | ||||
} | } | ||||
bool AnalyzerOptions::mayInlineTemplateFunctions() { | bool AnalyzerOptions::mayInlineTemplateFunctions() { | ||||
return getBooleanOption(InlineTemplateFunctions, | return getBooleanOption(InlineTemplateFunctions, | ||||
▲ Show 20 Lines • Show All 196 Lines • Show Last 20 Lines |