From 420089c47c58f41c188a5f5f282377771d67462b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 24 Aug 2005 22:43:53 +0000 Subject: [PATCH] add two new methods git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23024 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/SelectionDAG.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index 83c3047906f..e1826de8ec0 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -260,11 +260,16 @@ public: SDOperand Op4, SDOperand Op5) { return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3, Op4, Op5); } + SDOperand getTargetNode(unsigned Opcode, MVT::ValueType VT, + std::vector &Ops) { + return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops); + } /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead. /// This can cause recursive merging of nodes in the DAG. /// void ReplaceAllUsesWith(SDNode *From, SDNode *To); + void ReplaceAllUsesWith(SDNode *From, const std::vector &To); void dump() const; -- 2.34.1