mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-09 16:45:03 +00:00
add two new methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23024 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
86fac6b00a
commit
420089c47c
@ -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<SDOperand> &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<SDOperand> &To);
|
||||
|
||||
void dump() const;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user