[X86][SSE] Removed unused getTargetShuffleNode function

llvm-svn: 281481
This commit is contained in:
Simon Pilgrim 2016-09-14 14:30:00 +00:00
parent 67fdd15cf9
commit ec2d206669
1 changed files with 0 additions and 17 deletions

View File

@ -3863,23 +3863,6 @@ static SDValue getTargetShuffleNode(unsigned Opc, const SDLoc &dl, MVT VT,
}
}
static SDValue getTargetShuffleNode(unsigned Opc, const SDLoc &dl, MVT VT,
SDValue V1, SDValue V2, SelectionDAG &DAG) {
switch(Opc) {
default: llvm_unreachable("Unknown x86 shuffle node");
case X86ISD::MOVLHPS:
case X86ISD::MOVLHPD:
case X86ISD::MOVHLPS:
case X86ISD::MOVLPS:
case X86ISD::MOVLPD:
case X86ISD::MOVSS:
case X86ISD::MOVSD:
case X86ISD::UNPCKL:
case X86ISD::UNPCKH:
return DAG.getNode(Opc, dl, VT, V1, V2);
}
}
SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
MachineFunction &MF = DAG.getMachineFunction();
const X86RegisterInfo *RegInfo = Subtarget.getRegisterInfo();