diff options
author | James Y Knight <jyknight@google.com> | 2015-12-29 22:31:18 +0000 |
---|---|---|
committer | James Y Knight <jyknight@google.com> | 2015-12-29 22:31:18 +0000 |
commit | 7281c357b13b8dd67b848a4d0b803078c1b2d000 (patch) | |
tree | 1450d75960bd0abe65fe28a15543ee6d0ace6c05 /clang/lib/AST/StmtPrinter.cpp | |
parent | e77de75d7e009daaadb03e9b1091c3a9a9c9d311 (diff) | |
download | bcm5719-llvm-7281c357b13b8dd67b848a4d0b803078c1b2d000.tar.gz bcm5719-llvm-7281c357b13b8dd67b848a4d0b803078c1b2d000.zip |
[TrailingObjects] Convert OffsetOfExpr.
That necessitated moving the OffsetOfNode class out of OffsetOfExpr.
llvm-svn: 256590
Diffstat (limited to 'clang/lib/AST/StmtPrinter.cpp')
-rw-r--r-- | clang/lib/AST/StmtPrinter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/AST/StmtPrinter.cpp b/clang/lib/AST/StmtPrinter.cpp index 7706d0e8f8d..e55b2fc19a1 100644 --- a/clang/lib/AST/StmtPrinter.cpp +++ b/clang/lib/AST/StmtPrinter.cpp @@ -1305,8 +1305,8 @@ void StmtPrinter::VisitOffsetOfExpr(OffsetOfExpr *Node) { OS << ", "; bool PrintedSomething = false; for (unsigned i = 0, n = Node->getNumComponents(); i < n; ++i) { - OffsetOfExpr::OffsetOfNode ON = Node->getComponent(i); - if (ON.getKind() == OffsetOfExpr::OffsetOfNode::Array) { + OffsetOfNode ON = Node->getComponent(i); + if (ON.getKind() == OffsetOfNode::Array) { // Array node OS << "["; PrintExpr(Node->getIndexExpr(ON.getArrayExprIndex())); @@ -1316,7 +1316,7 @@ void StmtPrinter::VisitOffsetOfExpr(OffsetOfExpr *Node) { } // Skip implicit base indirections. - if (ON.getKind() == OffsetOfExpr::OffsetOfNode::Base) + if (ON.getKind() == OffsetOfNode::Base) continue; // Field or identifier node. |