reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/SelectionDAG/DAGCombiner.cpp
12812   if (N->getOpcode() == ISD::SINT_TO_FP && N0.getOpcode() == ISD::FP_TO_SINT &&
12813       N0.getOperand(0).getValueType() == VT)
12814     return DAG.getNode(ISD::FTRUNC, SDLoc(N), VT, N0.getOperand(0));
12816   if (N->getOpcode() == ISD::UINT_TO_FP && N0.getOpcode() == ISD::FP_TO_UINT &&
12817       N0.getOperand(0).getValueType() == VT)
12818     return DAG.getNode(ISD::FTRUNC, SDLoc(N), VT, N0.getOperand(0));