Skip to content

Commit 3ed4daf

Browse files
committed
[Clang] Add missing printer for vector type attribute
1 parent c6b9d5c commit 3ed4daf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

clang/lib/AST/TypePrinter.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2093,6 +2093,9 @@ void TypePrinter::printAttributedAfter(const AttributedType *T,
20932093
case attr::ArmMveStrictPolymorphism:
20942094
OS << "__clang_arm_mve_strict_polymorphism";
20952095
break;
2096+
case attr::ExtVectorType:
2097+
OS << "ext_vector_type";
2098+
break;
20962099
}
20972100
OS << "))";
20982101
}

0 commit comments

Comments
 (0)