Please use GitHub pull requests for new patches. Avoid migrating existing patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
clang/lib/AST/TextNodeDumper.cpp
Show First 20 Lines • Show All 1,489 Lines • ▼ Show 20 Lines | case VectorType::NeonPolyVector: | ||||
OS << " neon poly"; | OS << " neon poly"; | ||||
break; | break; | ||||
case VectorType::SveFixedLengthDataVector: | case VectorType::SveFixedLengthDataVector: | ||||
OS << " fixed-length sve data vector"; | OS << " fixed-length sve data vector"; | ||||
break; | break; | ||||
case VectorType::SveFixedLengthPredicateVector: | case VectorType::SveFixedLengthPredicateVector: | ||||
OS << " fixed-length sve predicate vector"; | OS << " fixed-length sve predicate vector"; | ||||
break; | break; | ||||
case VectorType::RVVFixedLengthDataVector: | |||||
OS << " fixed-length rvv data vector"; | |||||
break; | |||||
} | } | ||||
OS << " " << T->getNumElements(); | OS << " " << T->getNumElements(); | ||||
} | } | ||||
void TextNodeDumper::VisitFunctionType(const FunctionType *T) { | void TextNodeDumper::VisitFunctionType(const FunctionType *T) { | ||||
auto EI = T->getExtInfo(); | auto EI = T->getExtInfo(); | ||||
if (EI.getNoReturn()) | if (EI.getNoReturn()) | ||||
OS << " noreturn"; | OS << " noreturn"; | ||||
▲ Show 20 Lines • Show All 909 Lines • Show Last 20 Lines |