diff options
author | Dan Gohman <gohman@apple.com> | 2010-04-22 20:55:53 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-04-22 20:55:53 +0000 |
commit | 5b43aa0ddd44e7fa7d5d6adc377fa2c8d9682216 (patch) | |
tree | 04884bf891a9cbf5364ebd31ed1485d0622086f9 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | |
parent | ea2744f4dc82611edb8d70e2dd0b3beef29e4c17 (diff) | |
download | bcm5719-llvm-5b43aa0ddd44e7fa7d5d6adc377fa2c8d9682216.tar.gz bcm5719-llvm-5b43aa0ddd44e7fa7d5d6adc377fa2c8d9682216.zip |
Sink SelectionDAGBuilder's HandlePHINodesInSuccessorBlocks down
into SelectionDAGBuilder itself.
llvm-svn: 102128
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h index c71e60a315f..d9495fb01ea 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h @@ -369,8 +369,6 @@ public: void LowerCallTo(ImmutableCallSite CS, SDValue Callee, bool IsTailCall, MachineBasicBlock *LandingPad = NULL); - void HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB); - private: // Terminator instructions. void visitRet(const ReturnInst &I); @@ -495,6 +493,8 @@ private: const char *implVisitBinaryAtomic(const CallInst& I, ISD::NodeType Op); const char *implVisitAluOverflow(const CallInst &I, ISD::NodeType Op); + + void HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB); }; } // end namespace llvm |