mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 13:51:39 +00:00
[SVE] Fix mismatched sign comparison warning in unit test from r300842.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@300855 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f3c6d22768
commit
3e9c4ea1fe
@ -70,7 +70,7 @@ TEST(ScalableVectorMVTsTest, HelperFuncs) {
|
||||
|
||||
// Check fields inside MVT::ElementCount
|
||||
EltCnt = Vnx4i32.getVectorElementCount();
|
||||
EXPECT_EQ(EltCnt.Min, 4);
|
||||
EXPECT_EQ(EltCnt.Min, 4U);
|
||||
ASSERT_TRUE(EltCnt.Scalable);
|
||||
|
||||
// Check that fixed-length vector types aren't scalable.
|
||||
@ -81,7 +81,7 @@ TEST(ScalableVectorMVTsTest, HelperFuncs) {
|
||||
|
||||
// Check that MVT::ElementCount works for fixed-length types.
|
||||
EltCnt = V8i32.getVectorElementCount();
|
||||
EXPECT_EQ(EltCnt.Min, 8);
|
||||
EXPECT_EQ(EltCnt.Min, 8U);
|
||||
ASSERT_FALSE(EltCnt.Scalable);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user