mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-09 10:31:14 +00:00
R600: Remove dead function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219879 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a0b0184b33
commit
231a8d6cfb
@ -1918,18 +1918,6 @@ SDValue AMDGPUTargetLowering::LowerFP_TO_UINT(SDValue Op,
|
|||||||
return SDValue();
|
return SDValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
SDValue AMDGPUTargetLowering::ExpandSIGN_EXTEND_INREG(SDValue Op,
|
|
||||||
unsigned BitsDiff,
|
|
||||||
SelectionDAG &DAG) const {
|
|
||||||
MVT VT = Op.getSimpleValueType();
|
|
||||||
SDLoc DL(Op);
|
|
||||||
SDValue Shift = DAG.getConstant(BitsDiff, VT);
|
|
||||||
// Shift left by 'Shift' bits.
|
|
||||||
SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, Op.getOperand(0), Shift);
|
|
||||||
// Signed shift Right by 'Shift' bits.
|
|
||||||
return DAG.getNode(ISD::SRA, DL, VT, Shl, Shift);
|
|
||||||
}
|
|
||||||
|
|
||||||
SDValue AMDGPUTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
|
SDValue AMDGPUTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
|
||||||
SelectionDAG &DAG) const {
|
SelectionDAG &DAG) const {
|
||||||
EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
|
EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
|
||||||
|
@ -59,9 +59,6 @@ private:
|
|||||||
SDValue LowerFP_TO_UINT(SDValue Op, SelectionDAG &DAG) const;
|
SDValue LowerFP_TO_UINT(SDValue Op, SelectionDAG &DAG) const;
|
||||||
SDValue LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) const;
|
SDValue LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) const;
|
||||||
|
|
||||||
SDValue ExpandSIGN_EXTEND_INREG(SDValue Op,
|
|
||||||
unsigned BitsDiff,
|
|
||||||
SelectionDAG &DAG) const;
|
|
||||||
SDValue LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const;
|
SDValue LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const;
|
||||||
|
|
||||||
SDValue performStoreCombine(SDNode *N, DAGCombinerInfo &DCI) const;
|
SDValue performStoreCombine(SDNode *N, DAGCombinerInfo &DCI) const;
|
||||||
|
Loading…
Reference in New Issue
Block a user