diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-11-14 20:25:37 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-11-14 20:25:37 +0000 |
commit | 984639b7a4b2e2f15d82d64623a634b4772f022f (patch) | |
tree | bcdeaa53fa56a2ab66de9fc6a4238f4f3e5a1e68 | |
parent | 05ad7eb0c1d72cae78d4e12af8e443db4cf20ffa (diff) | |
download | external_llvm-984639b7a4b2e2f15d82d64623a634b4772f022f.zip external_llvm-984639b7a4b2e2f15d82d64623a634b4772f022f.tar.gz external_llvm-984639b7a4b2e2f15d82d64623a634b4772f022f.tar.bz2 |
Remove dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167970 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/PrologEpilogInserter.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/CodeGen/PrologEpilogInserter.cpp b/lib/CodeGen/PrologEpilogInserter.cpp index 77554d6..36c1ae7 100644 --- a/lib/CodeGen/PrologEpilogInserter.cpp +++ b/lib/CodeGen/PrologEpilogInserter.cpp @@ -133,19 +133,6 @@ bool PEI::runOnMachineFunction(MachineFunction &Fn) { return true; } -#if 0 -void PEI::getAnalysisUsage(AnalysisUsage &AU) const { - AU.setPreservesCFG(); - if (ShrinkWrapping || ShrinkWrapFunc != "") { - AU.addRequired<MachineLoopInfo>(); - AU.addRequired<MachineDominatorTree>(); - } - AU.addPreserved<MachineLoopInfo>(); - AU.addPreserved<MachineDominatorTree>(); - MachineFunctionPass::getAnalysisUsage(AU); -} -#endif - /// calculateCallsInformation - Calculate the MaxCallFrameSize and AdjustsStack /// variables for the function's frame information and eliminate call frame /// pseudo instructions. |