diff options
Diffstat (limited to 'clang/lib/AST/JSONNodeDumper.cpp')
-rw-r--r-- | clang/lib/AST/JSONNodeDumper.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/clang/lib/AST/JSONNodeDumper.cpp b/clang/lib/AST/JSONNodeDumper.cpp index 60598bd..abc3b27 100644 --- a/clang/lib/AST/JSONNodeDumper.cpp +++ b/clang/lib/AST/JSONNodeDumper.cpp @@ -677,30 +677,30 @@ void JSONNodeDumper::VisitDependentSizedExtVectorType( void JSONNodeDumper::VisitVectorType(const VectorType *VT) { JOS.attribute("numElements", VT->getNumElements()); switch (VT->getVectorKind()) { - case VectorType::GenericVector: + case VectorKind::Generic: break; - case VectorType::AltiVecVector: + case VectorKind::AltiVecVector: JOS.attribute("vectorKind", "altivec"); break; - case VectorType::AltiVecPixel: + case VectorKind::AltiVecPixel: JOS.attribute("vectorKind", "altivec pixel"); break; - case VectorType::AltiVecBool: + case VectorKind::AltiVecBool: JOS.attribute("vectorKind", "altivec bool"); break; - case VectorType::NeonVector: + case VectorKind::Neon: JOS.attribute("vectorKind", "neon"); break; - case VectorType::NeonPolyVector: + case VectorKind::NeonPoly: JOS.attribute("vectorKind", "neon poly"); break; - case VectorType::SveFixedLengthDataVector: + case VectorKind::SveFixedLengthData: JOS.attribute("vectorKind", "fixed-length sve data vector"); break; - case VectorType::SveFixedLengthPredicateVector: + case VectorKind::SveFixedLengthPredicate: JOS.attribute("vectorKind", "fixed-length sve predicate vector"); break; - case VectorType::RVVFixedLengthDataVector: + case VectorKind::RVVFixedLengthData: JOS.attribute("vectorKind", "fixed-length rvv data vector"); break; } |