reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

unittests/IR/ConstantRangeTest.cpp
 1188   Expected = ConstantRange(APInt(16, 0), APInt(16, 20));
 1189   EXPECT_EQ(PosLargeLHS.srem(PosMod), Expected);
 1190   EXPECT_EQ(PosLargeLHS.srem(NegMod), Expected);
 1192   Expected = ConstantRange(APInt(16, -19), APInt(16, 1));
 1193   EXPECT_EQ(NegLargeLHS.srem(PosMod), Expected);
 1194   EXPECT_EQ(NegLargeLHS.srem(NegMod), Expected);
 1196   Expected = ConstantRange(APInt(16, -19), APInt(16, 20));
 1197   EXPECT_EQ(PosNegLargeLHS.srem(PosMod), Expected);
 1198   EXPECT_EQ(PosNegLargeLHS.srem(NegMod), Expected);