mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-12-19 11:23:32 +00:00
Change UpdateNodeOperands' operand and return value from SDValue to
SDNode *, since it doesn't care about the ResNo value. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106282 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -678,15 +678,15 @@ public:
|
||||
/// already exists. If the resultant node does not exist in the DAG, the
|
||||
/// input node is returned. As a degenerate case, if you specify the same
|
||||
/// input operands as the node already has, the input node is returned.
|
||||
SDValue UpdateNodeOperands(SDValue N, SDValue Op);
|
||||
SDValue UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2);
|
||||
SDValue UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
|
||||
SDNode *UpdateNodeOperands(SDNode *N, SDValue Op);
|
||||
SDNode *UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2);
|
||||
SDNode *UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2,
|
||||
SDValue Op3);
|
||||
SDValue UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
|
||||
SDNode *UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2,
|
||||
SDValue Op3, SDValue Op4);
|
||||
SDValue UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
|
||||
SDNode *UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2,
|
||||
SDValue Op3, SDValue Op4, SDValue Op5);
|
||||
SDValue UpdateNodeOperands(SDValue N,
|
||||
SDNode *UpdateNodeOperands(SDNode *N,
|
||||
const SDValue *Ops, unsigned NumOps);
|
||||
|
||||
/// SelectNodeTo - These are used for target selectors to *mutate* the
|
||||
|
||||
Reference in New Issue
Block a user