diff options
author | Alexander Musman <alexander.musman@gmail.com> | 2014-07-17 08:54:58 +0000 |
---|---|---|
committer | Alexander Musman <alexander.musman@gmail.com> | 2014-07-17 08:54:58 +0000 |
commit | 80c2289a03f8a993b2377993a873242a62116c58 (patch) | |
tree | 884ff25047b61490212bc094c568afb654d56757 /clang/lib/AST/StmtProfile.cpp | |
parent | c790515c8b2f395cc259030532992a4497b5daa8 (diff) | |
download | bcm5719-llvm-80c2289a03f8a993b2377993a873242a62116c58.tar.gz bcm5719-llvm-80c2289a03f8a993b2377993a873242a62116c58.zip |
[OPENMP] Parsing/Sema analysis of directive 'master'
llvm-svn: 213237
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 d0c39a5f340..c45281f13f4 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp @@ -385,6 +385,10 @@ void StmtProfiler::VisitOMPSingleDirective(const OMPSingleDirective *S) { VisitOMPExecutableDirective(S); } +void StmtProfiler::VisitOMPMasterDirective(const OMPMasterDirective *S) { + VisitOMPExecutableDirective(S); +} + void StmtProfiler::VisitOMPParallelForDirective(const OMPParallelForDirective *S) { VisitOMPExecutableDirective(S); |