diff options
author | Pedro Artigas <partigas@apple.com> | 2012-12-03 21:56:57 +0000 |
---|---|---|
committer | Pedro Artigas <partigas@apple.com> | 2012-12-03 21:56:57 +0000 |
commit | 49eb628c21b358380b76df82aa3dfe0baab4c6ec (patch) | |
tree | 29d69b3d5f7545a0dc7def41118e59b1dd28036b /include/llvm/CodeGen/MachineModuleInfo.h | |
parent | f7e78487de159940e00e3fadaf6b2e023e2ad8fe (diff) |
moves doInitialization and doFinalization to the Pass class and removes some unreachable code in MachineModuleInfo
reviewed by Evan Cheng <evan.cheng@apple.com>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169164 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineModuleInfo.h')
-rw-r--r-- | include/llvm/CodeGen/MachineModuleInfo.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/CodeGen/MachineModuleInfo.h b/include/llvm/CodeGen/MachineModuleInfo.h index 545638e705..2d8c26def8 100644 --- a/include/llvm/CodeGen/MachineModuleInfo.h +++ b/include/llvm/CodeGen/MachineModuleInfo.h @@ -180,12 +180,6 @@ public: const MCObjectFileInfo *MOFI); ~MachineModuleInfo(); - using ModulePass::doInitialization; - bool doInitialization(); - - using ModulePass::doFinalization; - bool doFinalization(); - /// EndFunction - Discard function meta information. /// void EndFunction(); |