Home
last modified time | relevance | path

Searched refs:PartialRes (Results 1 – 1 of 1) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp8081 const auto appendResult = [&](SDValue PartialRes) { in expandIS_FPCLASS() argument
8082 if (PartialRes) { in expandIS_FPCLASS()
8084 Res = DAG.getNode(ISD::OR, DL, ResultVT, Res, PartialRes); in expandIS_FPCLASS()
8086 Res = PartialRes; in expandIS_FPCLASS()
8108 SDValue PartialRes; in expandIS_FPCLASS() local
8115 PartialRes = DAG.getSetCC(DL, ResultVT, AbsV, ExpMaskV, ISD::SETLT); in expandIS_FPCLASS()
8119 PartialRes = DAG.getSetCC(DL, ResultVT, OpAsInt, ExpMaskV, ISD::SETULT); in expandIS_FPCLASS()
8123 PartialRes = DAG.getSetCC(DL, ResultVT, AbsV, ExpMaskV, ISD::SETLT); in expandIS_FPCLASS()
8124 PartialRes = DAG.getNode(ISD::AND, DL, ResultVT, PartialRes, SignV); in expandIS_FPCLASS()
8127 appendResult(PartialRes); in expandIS_FPCLASS()
[all …]