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 | e18e4add6c49ddba1547a99ee9231a3428565bb8 (patch) | |
tree | c5b11f7d30b570ea9229ec9a4e2b86bef5a2911d | |
parent | 2d92d8af25a06b7e849858c1e64e8e4165297bd5 (diff) | |
download | bcm5719-llvm-e18e4add6c49ddba1547a99ee9231a3428565bb8.tar.gz bcm5719-llvm-e18e4add6c49ddba1547a99ee9231a3428565bb8.zip |
Remove dead code.
llvm-svn: 167970
-rw-r--r-- | llvm/lib/CodeGen/PrologEpilogInserter.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/llvm/lib/CodeGen/PrologEpilogInserter.cpp b/llvm/lib/CodeGen/PrologEpilogInserter.cpp index 77554d691c2..36c1ae7f720 100644 --- a/llvm/lib/CodeGen/PrologEpilogInserter.cpp +++ b/llvm/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. |