summaryrefslogtreecommitdiffstats
path: root/include/clang
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2019-01-15 20:31:31 +0000
committerStephen Kelly <steveire@gmail.com>2019-01-15 20:31:31 +0000
commitfb4e678d5a81330b77c5dcd5de0aea025be8a196 (patch)
treebecf6f249010e23d38825faedfb365f5399a5cf3 /include/clang
parent7148d5544fd271c0d3d020953643c5e715c0a3ad (diff)
NFC: Implement OMPClause dump in terms of visitors
Reviewers: aaron.ballman Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D56708 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@351236 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang')
-rw-r--r--include/clang/AST/TextNodeDumper.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/AST/TextNodeDumper.h b/include/clang/AST/TextNodeDumper.h
index a5cc47f00b..6320028447 100644
--- a/include/clang/AST/TextNodeDumper.h
+++ b/include/clang/AST/TextNodeDumper.h
@@ -169,6 +169,8 @@ public:
void Visit(const CXXCtorInitializer *Init);
+ void Visit(const OMPClause *C);
+
void dumpPointer(const void *Ptr);
void dumpLocation(SourceLocation Loc);
void dumpSourceRange(SourceRange R);