Searched refs:NewL (Results 1 – 2 of 2) sorted by relevance
/external/llvm/lib/IR/ |
D | ConstantRange.cpp | 643 APInt NewL = APIntOps::smax(getSignedMin(), Other.getSignedMin()); in smax() local 645 if (NewU == NewL) in smax() 647 return ConstantRange(NewL, NewU); in smax() 656 APInt NewL = APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin()); in umax() local 658 if (NewU == NewL) in umax() 660 return ConstantRange(NewL, NewU); in umax()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeFloatTypes.cpp | 573 SDValue NewL; in SoftenFloatRes_LOAD() local 575 NewL = DAG.getLoad(L->getAddressingMode(), L->getExtensionType(), in SoftenFloatRes_LOAD() 582 ReplaceValueWith(SDValue(N, 1), NewL.getValue(1)); in SoftenFloatRes_LOAD() 583 return NewL; in SoftenFloatRes_LOAD() 587 NewL = DAG.getLoad(L->getAddressingMode(), ISD::NON_EXTLOAD, in SoftenFloatRes_LOAD() 595 ReplaceValueWith(SDValue(N, 1), NewL.getValue(1)); in SoftenFloatRes_LOAD() 596 return BitConvertToInteger(DAG.getNode(ISD::FP_EXTEND, dl, VT, NewL)); in SoftenFloatRes_LOAD()
|