1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

[ConstantRange] Add missing result check to the ConstantRange::truncate test.

llvm-svn: 304693
This commit is contained in:
Craig Topper 2017-06-04 23:03:52 +00:00
parent 993af3e942
commit e3e4e5fe38

View File

@ -187,6 +187,7 @@ TEST_F(ConstantRangeTest, Trunc) {
EXPECT_EQ(TOne, ConstantRange(One.getLower().trunc(10),
One.getUpper().trunc(10)));
EXPECT_TRUE(TSome.isFullSet());
EXPECT_TRUE(TWrap.isFullSet());
}
TEST_F(ConstantRangeTest, ZExt) {