diff options
author | Alexander Musman <alexander.musman@gmail.com> | 2014-05-29 14:36:25 +0000 |
---|---|---|
committer | Alexander Musman <alexander.musman@gmail.com> | 2014-05-29 14:36:25 +0000 |
commit | f0d76e7dc3e5ca3969e44fd40417a0e568493a4e (patch) | |
tree | 15545611be68d7376c675f090b963a20e7046ec5 /clang/lib/AST/StmtProfile.cpp | |
parent | fa5c0750f0fa18424de62878f0d717fee861cb9d (diff) | |
download | bcm5719-llvm-f0d76e7dc3e5ca3969e44fd40417a0e568493a4e.tar.gz bcm5719-llvm-f0d76e7dc3e5ca3969e44fd40417a0e568493a4e.zip |
Parsing/Sema for OMPAlignedClause.
llvm-svn: 209816
Diffstat (limited to 'clang/lib/AST/StmtProfile.cpp')
-rw-r--r-- | clang/lib/AST/StmtProfile.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index 9cff6d67437..d96a6116ae9 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp @@ -308,6 +308,10 @@ void OMPClauseProfiler::VisitOMPLinearClause(const OMPLinearClause *C) { VisitOMPClauseList(C); Profiler->VisitStmt(C->getStep()); } +void OMPClauseProfiler::VisitOMPAlignedClause(const OMPAlignedClause *C) { + VisitOMPClauseList(C); + Profiler->VisitStmt(C->getAlignment()); +} void OMPClauseProfiler::VisitOMPCopyinClause(const OMPCopyinClause *C) { VisitOMPClauseList(C); } |