[UnitTest] Fix warning, NFC.

Use an unsigned literal to avoid signedness mismatch in the compare.

llvm-svn: 257747
This commit is contained in:
Joseph Tremoulet 2016-01-14 06:30:19 +00:00
parent c6615cdce5
commit 56c9958bec
1 changed files with 1 additions and 1 deletions

View File

@ -541,7 +541,7 @@ TEST(InstructionsTest, AlterCallBundles) {
EXPECT_EQ(Call->getTailCallKind(), Clone->getTailCallKind());
EXPECT_TRUE(Clone->hasFnAttr(Attribute::AttrKind::Cold));
EXPECT_EQ(Call->getDebugLoc(), Clone->getDebugLoc());
EXPECT_EQ(Clone->getNumOperandBundles(), 1);
EXPECT_EQ(Clone->getNumOperandBundles(), 1U);
EXPECT_TRUE(Clone->getOperandBundle("after").hasValue());
}