diff options
author | Fangrui Song <i@maskray.me> | 2020-09-04 13:27:42 -0700 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2020-09-04 13:27:42 -0700 |
commit | 398ba37230431b6ab263cf91bf4c03e4f2c7acb8 (patch) | |
tree | ea7613881b3b280e804543eb048b4451aaa86c00 /llvm/lib/CodeGen/LiveDebugVariables.cpp | |
parent | 3b64052a2572e69355969a59a0c4c8aba4fee887 (diff) | |
download | llvm-398ba37230431b6ab263cf91bf4c03e4f2c7acb8.zip llvm-398ba37230431b6ab263cf91bf4c03e4f2c7acb8.tar.gz llvm-398ba37230431b6ab263cf91bf4c03e4f2c7acb8.tar.bz2 |
[LiveDebugVariables] Delete unneeded doInitialization
Diffstat (limited to 'llvm/lib/CodeGen/LiveDebugVariables.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveDebugVariables.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/LiveDebugVariables.cpp b/llvm/lib/CodeGen/LiveDebugVariables.cpp index dd0a900..97cc7a0 100644 --- a/llvm/lib/CodeGen/LiveDebugVariables.cpp +++ b/llvm/lib/CodeGen/LiveDebugVariables.cpp @@ -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) |