forked from OSchip/llvm-project
WholeProgramDevirt - fix uninitialized variable warnings. NFCI.
This commit is contained in:
parent
f784ad8ff3
commit
39c0829a55
|
@ -616,8 +616,8 @@ struct WholeProgramDevirt : public ModulePass {
|
|||
|
||||
bool UseCommandLine = false;
|
||||
|
||||
ModuleSummaryIndex *ExportSummary;
|
||||
const ModuleSummaryIndex *ImportSummary;
|
||||
ModuleSummaryIndex *ExportSummary = nullptr;
|
||||
const ModuleSummaryIndex *ImportSummary = nullptr;
|
||||
|
||||
WholeProgramDevirt() : ModulePass(ID), UseCommandLine(true) {
|
||||
initializeWholeProgramDevirtPass(*PassRegistry::getPassRegistry());
|
||||
|
|
Loading…
Reference in New Issue