[ConstantRange] Fix what appear to be copy and paste mistakes in the unittest.

llvm-svn: 303033
This commit is contained in:
Craig Topper 2017-05-15 04:40:19 +00:00
parent f6f6fb903e
commit 5c0a5478db
1 changed files with 2 additions and 2 deletions

View File

@ -708,13 +708,13 @@ TEST(ConstantRange, MakeGuaranteedNoWrapRegion) {
Instruction::Add, ConstantRange(32, /* isFullSet = */ true), Instruction::Add, ConstantRange(32, /* isFullSet = */ true),
OBO::NoUnsignedWrap); OBO::NoUnsignedWrap);
EXPECT_TRUE(NUWForAllValues.isSingleElement() && EXPECT_TRUE(NUWForAllValues.isSingleElement() &&
NSWForAllValues.getSingleElement()->isMinValue()); NUWForAllValues.getSingleElement()->isMinValue());
auto NUWAndNSWForAllValues = ConstantRange::makeGuaranteedNoWrapRegion( auto NUWAndNSWForAllValues = ConstantRange::makeGuaranteedNoWrapRegion(
Instruction::Add, ConstantRange(32, /* isFullSet = */ true), Instruction::Add, ConstantRange(32, /* isFullSet = */ true),
OBO::NoUnsignedWrap | OBO::NoSignedWrap); OBO::NoUnsignedWrap | OBO::NoSignedWrap);
EXPECT_TRUE(NUWAndNSWForAllValues.isSingleElement() && EXPECT_TRUE(NUWAndNSWForAllValues.isSingleElement() &&
NSWForAllValues.getSingleElement()->isMinValue()); NUWAndNSWForAllValues.getSingleElement()->isMinValue());
ConstantRange OneToFive(APInt(32, 1), APInt(32, 6)); ConstantRange OneToFive(APInt(32, 1), APInt(32, 6));
EXPECT_EQ(ConstantRange::makeGuaranteedNoWrapRegion( EXPECT_EQ(ConstantRange::makeGuaranteedNoWrapRegion(