Skip to content

Commit 0968b1f

Browse files
committed
Fixed an expected test failure caused by these changes
1 parent 8092f6a commit 0968b1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/unittests/Transforms/Utils/LocalTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1153,7 +1153,7 @@ TEST(Local, ExpressionForConstant) {
11531153
IntegerType *Int1Ty = Type::getInt1Ty(Context);
11541154
Expr = createExpression(ConstantInt::getTrue(Context), Int1Ty);
11551155
EXPECT_NE(Expr, nullptr);
1156-
EXPECT_EQ(Expr->getElement(1), 18446744073709551615U);
1156+
EXPECT_EQ(Expr->getElement(1), 1U);
11571157

11581158
Expr = createExpression(ConstantInt::getFalse(Context), Int1Ty);
11591159
EXPECT_NE(Expr, nullptr);

0 commit comments

Comments
 (0)