mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-28 07:17:32 +00:00
Delete unused code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91743 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1291,20 +1291,6 @@ public:
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// GetPossiblePreceedingTailCall - Get preceeding TailCallNodeOpCode node if
|
|
||||||
/// it exists. Skip a possible ISD::TokenFactor.
|
|
||||||
static SDValue GetPossiblePreceedingTailCall(SDValue Chain,
|
|
||||||
unsigned TailCallNodeOpCode) {
|
|
||||||
if (Chain.getOpcode() == TailCallNodeOpCode) {
|
|
||||||
return Chain;
|
|
||||||
} else if (Chain.getOpcode() == ISD::TokenFactor) {
|
|
||||||
if (Chain.getNumOperands() &&
|
|
||||||
Chain.getOperand(0).getOpcode() == TailCallNodeOpCode)
|
|
||||||
return Chain.getOperand(0);
|
|
||||||
}
|
|
||||||
return Chain;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// getTargetNodeName() - This method returns the name of a target specific
|
/// getTargetNodeName() - This method returns the name of a target specific
|
||||||
/// DAG node.
|
/// DAG node.
|
||||||
virtual const char *getTargetNodeName(unsigned Opcode) const;
|
virtual const char *getTargetNodeName(unsigned Opcode) const;
|
||||||
|
Reference in New Issue
Block a user