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/Support/
ConstantRangeTest.cpp
421
TEST_F(ConstantRangeTest,
SMax
) {
422
EXPECT_EQ(Full.
smax
(Full), Full);
423
EXPECT_EQ(Full.
smax
(Empty), Empty);
424
EXPECT_EQ(Full.
smax
(Some), ConstantRange(APInt(16, 0xa),
426
EXPECT_EQ(Full.
smax
(Wrap), Full);
427
EXPECT_EQ(Full.
smax
(One), ConstantRange(APInt(16, 0xa),
429
EXPECT_EQ(Empty.
smax
(Empty), Empty);
430
EXPECT_EQ(Empty.
smax
(Some), Empty);
431
EXPECT_EQ(Empty.
smax
(Wrap), Empty);
432
EXPECT_EQ(Empty.
smax
(One), Empty)
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp
779
ConstantInt *
SMax
= ConstantInt::get(X->getContext(),
789
return new ICmpInst(ICmpInst::ICMP_SGT, X, ConstantExpr::getSub(
SMax
, CI));
[
all
...]
Completed in 26 milliseconds