Skip to content

Commit dd90ff4

Browse files
committed
RM
1 parent 5c155ce commit dd90ff4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

llvm/unittests/IR/VectorTypeUtilsTest.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ using namespace llvm;
1515

1616
namespace {
1717

18-
class VectorUtilsTest : public ::testing::Test {};
18+
class VectorTypeUtilsTest : public ::testing::Test {};
1919

20-
TEST(VectorUtilsTest, TestToVectorizedTy) {
20+
TEST(VectorTypeUtilsTest, TestToVectorizedTy) {
2121
LLVMContext C;
2222

2323
Type *ITy = Type::getInt32Ty(C);
@@ -62,7 +62,7 @@ TEST(VectorUtilsTest, TestToVectorizedTy) {
6262
}
6363
}
6464

65-
TEST(VectorUtilsTest, TestToScalarizedTy) {
65+
TEST(VectorTypeUtilsTest, TestToScalarizedTy) {
6666
LLVMContext C;
6767

6868
Type *ITy = Type::getInt32Ty(C);
@@ -80,7 +80,7 @@ TEST(VectorUtilsTest, TestToScalarizedTy) {
8080
}
8181
}
8282

83-
TEST(VectorUtilsTest, TestGetContainedTypes) {
83+
TEST(VectorTypeUtilsTest, TestGetContainedTypes) {
8484
LLVMContext C;
8585

8686
Type *ITy = Type::getInt32Ty(C);
@@ -97,7 +97,7 @@ TEST(VectorUtilsTest, TestGetContainedTypes) {
9797
EXPECT_EQ(getContainedTypes(MixedStructTy), ArrayRef<Type *>({FTy, ITy}));
9898
}
9999

100-
TEST(VectorUtilsTest, TestIsVectorizedTy) {
100+
TEST(VectorTypeUtilsTest, TestIsVectorizedTy) {
101101
LLVMContext C;
102102

103103
Type *ITy = Type::getInt32Ty(C);
@@ -130,7 +130,7 @@ TEST(VectorUtilsTest, TestIsVectorizedTy) {
130130
EXPECT_FALSE(isVectorizedTy(PackedWideStruct));
131131
}
132132

133-
TEST(VectorUtilsTest, TestGetVectorizedTypeVF) {
133+
TEST(VectorTypeUtilsTest, TestGetVectorizedTypeVF) {
134134
LLVMContext C;
135135

136136
Type *ITy = Type::getInt32Ty(C);

0 commit comments

Comments
 (0)