aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-01-29 06:01:13 +0000
committerChris Lattner <sabre@nondot.org>2006-01-29 06:01:13 +0000
commit2128a2f76c07632451eb996aed9fdc256ada3951 (patch)
tree1e8d141deb31de28daf79fee6a136aae7688c88c
parent03d5e877fd30d7f18546e6df8fd60837081ad8cc (diff)
remove the getBR2Way_CC method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25768 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/CodeGen/SelectionDAG.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h
index fcc4c40eef..929fe1ff7e 100644
--- a/include/llvm/CodeGen/SelectionDAG.h
+++ b/include/llvm/CodeGen/SelectionDAG.h
@@ -229,21 +229,6 @@ public:
return getNode(ISD::SELECT_CC, VT, LHS, RHS, True, False,getCondCode(Cond));
}
- /// getBR2Way_CC - Helper function to make it easier to build BRTWOWAY_CC
- /// nodes.
- ///
- SDOperand getBR2Way_CC(SDOperand Chain, SDOperand CCNode, SDOperand LHS,
- SDOperand RHS, SDOperand True, SDOperand False) {
- std::vector<SDOperand> Ops;
- Ops.push_back(Chain);
- Ops.push_back(CCNode);
- Ops.push_back(LHS);
- Ops.push_back(RHS);
- Ops.push_back(True);
- Ops.push_back(False);
- return getNode(ISD::BRTWOWAY_CC, MVT::Other, Ops);
- }
-
/// getVAArg - VAArg produces a result and token chain, and takes a pointer
/// and a source value as input.
SDOperand getVAArg(MVT::ValueType VT, SDOperand Chain, SDOperand Ptr,