forked from OSchip/llvm-project
[LiveDebugVariables] Delete unneeded doInitialization
This commit is contained in:
parent
3b64052a25
commit
398ba37230
|
@ -1444,10 +1444,6 @@ void LiveDebugVariables::emitDebugValues(VirtRegMap *VRM) {
|
|||
static_cast<LDVImpl*>(pImpl)->emitDebugValues(VRM);
|
||||
}
|
||||
|
||||
bool LiveDebugVariables::doInitialization(Module &M) {
|
||||
return Pass::doInitialization(M);
|
||||
}
|
||||
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
LLVM_DUMP_METHOD void LiveDebugVariables::dump() const {
|
||||
if (pImpl)
|
||||
|
|
|
@ -56,7 +56,6 @@ private:
|
|||
bool runOnMachineFunction(MachineFunction &) override;
|
||||
void releaseMemory() override;
|
||||
void getAnalysisUsage(AnalysisUsage &) const override;
|
||||
bool doInitialization(Module &) override;
|
||||
};
|
||||
|
||||
} // end namespace llvm
|
||||
|
|
Loading…
Reference in New Issue