[PATCH] D55257: Inline handling of DependentSizedArrayType
Stephen Kelly via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Dec 5 12:37:13 PST 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL348409: NFC: Inline handling of DependentSizedArrayType (authored by steveire, committed by ).
Herald added a subscriber: llvm-commits.
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55257/new/
https://reviews.llvm.org/D55257
Files:
cfe/trunk/lib/AST/ASTDumper.cpp
Index: cfe/trunk/lib/AST/ASTDumper.cpp
===================================================================
--- cfe/trunk/lib/AST/ASTDumper.cpp
+++ cfe/trunk/lib/AST/ASTDumper.cpp
@@ -299,9 +299,15 @@
dumpStmt(T->getSizeExpr());
}
void VisitDependentSizedArrayType(const DependentSizedArrayType *T) {
- VisitArrayType(T);
+ switch (T->getSizeModifier()) {
+ case ArrayType::Normal: break;
+ case ArrayType::Static: OS << " static"; break;
+ case ArrayType::Star: OS << " *"; break;
+ }
+ OS << " " << T->getIndexTypeQualifiers().getAsString();
OS << " ";
dumpSourceRange(T->getBracketsRange());
+ dumpTypeAsChild(T->getElementType());
dumpStmt(T->getSizeExpr());
}
void VisitDependentSizedExtVectorType(
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D55257.176866.patch
Type: text/x-patch
Size: 797 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20181205/1467503f/attachment.bin>
More information about the cfe-commits
mailing list