OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SMax
(Results
1 - 2
of
2
) sorted by null
/external/llvm/unittests/IR/
ConstantRangeTest.cpp
424
TEST_F(ConstantRangeTest,
SMax
) {
425
EXPECT_EQ(Full.
smax
(Full), Full);
426
EXPECT_EQ(Full.
smax
(Empty), Empty);
427
EXPECT_EQ(Full.
smax
(Some), ConstantRange(APInt(16, 0xa),
429
EXPECT_EQ(Full.
smax
(Wrap), Full);
430
EXPECT_EQ(Full.
smax
(One), ConstantRange(APInt(16, 0xa),
432
EXPECT_EQ(Empty.
smax
(Empty), Empty);
433
EXPECT_EQ(Empty.
smax
(Some), Empty);
434
EXPECT_EQ(Empty.
smax
(Wrap), Empty);
435
EXPECT_EQ(Empty.
smax
(One), Empty)
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp
778
ConstantInt *
SMax
= ConstantInt::get(X->getContext(),
788
return new ICmpInst(ICmpInst::ICMP_SGT, X, ConstantExpr::getSub(
SMax
, CI));
[
all
...]
Completed in 49 milliseconds