diff options
author | Cameron Zwarich <zwarich@apple.com> | 2010-12-05 19:58:57 +0000 |
---|---|---|
committer | Cameron Zwarich <zwarich@apple.com> | 2010-12-05 19:58:57 +0000 |
commit | 6766c420a2740f60c46b89bab92b08d424dba152 (patch) | |
tree | 80ba230cecf132211468d29c4114e27682e37914 /llvm/lib/CodeGen | |
parent | 8d1695589c831ee7dde6ba96e684208b5ae0ef62 (diff) | |
download | bcm5719-llvm-6766c420a2740f60c46b89bab92b08d424dba152.tar.gz bcm5719-llvm-6766c420a2740f60c46b89bab92b08d424dba152.zip |
I forgot to actually remove the FindCopyInsertPoint() declaration from
PHIElimination.h.
llvm-svn: 120953
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/PHIElimination.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/lib/CodeGen/PHIElimination.h b/llvm/lib/CodeGen/PHIElimination.h index 3f593898e1a..3690732bcfa 100644 --- a/llvm/lib/CodeGen/PHIElimination.h +++ b/llvm/lib/CodeGen/PHIElimination.h @@ -55,14 +55,6 @@ namespace llvm { bool SplitPHIEdges(MachineFunction &MF, MachineBasicBlock &MBB, LiveVariables &LV, MachineLoopInfo *MLI); - /// FindCopyInsertPoint - Find a safe place in MBB to insert a copy from - /// SrcReg when following the CFG edge to SuccMBB. This needs to be after - /// any def of SrcReg, but before any subsequent point where control flow - /// might jump out of the basic block. - MachineBasicBlock::iterator FindCopyInsertPoint(MachineBasicBlock &MBB, - MachineBasicBlock &SuccMBB, - unsigned SrcReg); - typedef std::pair<unsigned, unsigned> BBVRegPair; typedef DenseMap<BBVRegPair, unsigned> VRegPHIUse; |