Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:TruncOp

4953     SDValue TruncOp = N0.getOperand(0);
4954 if (TruncOp.getValueType() == VT)
4955 return TruncOp; // x iff x size == zext size.
4956 if (TruncOp.getValueType().bitsGT(VT))
4957 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, TruncOp);
4958 return DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, TruncOp);