mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-27 16:17:17 +00:00
Remove some dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28481 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -403,27 +403,6 @@ HowToPassCCCArgument(MVT::ValueType ObjectVT, unsigned NumXMMRegs,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// getFormalArgObjects - Returns itself if Op is a FORMAL_ARGUMENTS, otherwise
|
|
||||||
/// returns the FORMAL_ARGUMENTS node(s) that made up parts of the node.
|
|
||||||
static std::vector<SDOperand> getFormalArgObjects(SDOperand Op) {
|
|
||||||
unsigned Opc = Op.getOpcode();
|
|
||||||
std::vector<SDOperand> Objs;
|
|
||||||
if (Opc == ISD::TRUNCATE) {
|
|
||||||
Op = Op.getOperand(0);
|
|
||||||
assert(Op.getOpcode() == ISD::AssertSext ||
|
|
||||||
Op.getOpcode() == ISD::AssertZext);
|
|
||||||
Objs.push_back(Op.getOperand(0));
|
|
||||||
} else if (Opc == ISD::FP_ROUND || Opc == ISD::VBIT_CONVERT) {
|
|
||||||
Objs.push_back(Op.getOperand(0));
|
|
||||||
} else if (Opc == ISD::BUILD_PAIR) {
|
|
||||||
Objs.push_back(Op.getOperand(0));
|
|
||||||
Objs.push_back(Op.getOperand(1));
|
|
||||||
} else {
|
|
||||||
Objs.push_back(Op);
|
|
||||||
}
|
|
||||||
return Objs;
|
|
||||||
}
|
|
||||||
|
|
||||||
SDOperand X86TargetLowering::LowerCCCArguments(SDOperand Op, SelectionDAG &DAG) {
|
SDOperand X86TargetLowering::LowerCCCArguments(SDOperand Op, SelectionDAG &DAG) {
|
||||||
unsigned NumArgs = Op.Val->getNumValues() - 1;
|
unsigned NumArgs = Op.Val->getNumValues() - 1;
|
||||||
MachineFunction &MF = DAG.getMachineFunction();
|
MachineFunction &MF = DAG.getMachineFunction();
|
||||||
|
Reference in New Issue
Block a user