OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NewL
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/IR/
ConstantRange.cpp
696
APInt
NewL
= APIntOps::smax(getSignedMin(), Other.getSignedMin());
698
if (NewU ==
NewL
)
700
return ConstantRange(
NewL
, NewU);
709
APInt
NewL
= APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin());
711
if (NewU ==
NewL
)
713
return ConstantRange(
NewL
, NewU);
/external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp
617
SDValue
NewL
;
619
NewL
= DAG.getLoad(L->getAddressingMode(), L->getExtensionType(),
626
if (N !=
NewL
.getValue(1).getNode())
627
ReplaceValueWith(SDValue(N, 1),
NewL
.getValue(1));
628
return
NewL
;
632
NewL
= DAG.getLoad(L->getAddressingMode(), ISD::NON_EXTLOAD,
640
ReplaceValueWith(SDValue(N, 1),
NewL
.getValue(1));
641
auto ExtendNode = DAG.getNode(ISD::FP_EXTEND, dl, VT,
NewL
);
[
all
...]
Completed in 1637 milliseconds