@@ -15,9 +15,9 @@ using namespace llvm;
1515
1616namespace {
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