forked from OSchip/llvm-project
[X86][SSE] Removed unused getTargetShuffleNode function
llvm-svn: 281481
This commit is contained in:
parent
67fdd15cf9
commit
ec2d206669
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue