Skip to content

Commit

Permalink
Fix Wsign-compare warnings in test.
Browse files Browse the repository at this point in the history
  • Loading branch information
echristo committed Aug 17, 2020
1 parent 3d21fa5 commit 1bf0732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/unittests/Object/XCOFFObjectFileTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ TEST(XCOFFObjectFileTest, XCOFFTracebackTableAPIControlledStorageInfoDisp) {

SmallVector<uint32_t, 8> Disp = TT.getControlledStorageInfoDisp().getValue();

ASSERT_EQ(Disp.size(), 2);
ASSERT_EQ(Disp.size(), 2UL);
EXPECT_EQ(Disp[0], 0x05050000u);
EXPECT_EQ(Disp[1], 0x06060000u);
}
Expand Down

0 comments on commit 1bf0732

Please sign in to comment.