We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 945e943 commit 8f33995Copy full SHA for 8f33995
llvm/unittests/Transforms/Utils/LocalTest.cpp
@@ -1204,7 +1204,7 @@ TEST(Local, ExpressionForConstant) {
1204
IntegerType *Int16Ty = Type::getInt16Ty(Context);
1205
Expr = createExpression(ConstantInt::getSigned(Int16Ty, -50), Int16Ty);
1206
EXPECT_NE(Expr, nullptr);
1207
- EXPECT_EQ(Expr->getElement(1), -50U);
+ EXPECT_EQ(Expr->getElement(1), -50ULL);
1208
1209
IntegerType *Int32Ty = Type::getInt32Ty(Context);
1210
Expr = createExpression(ConstantInt::get(Int32Ty, 0x7FFFFFFF), Int32Ty);
0 commit comments