aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorAlexey Bataev <a.bataev@hotmail.com>2014-10-07 10:13:33 +0000
committerAlexey Bataev <a.bataev@hotmail.com>2014-10-07 10:13:33 +0000
commit941bbec6f4d90763ec3fd97f7380836c7085ea81 (patch)
tree11486f57eae83a1dca964517a51a7658b19a3e86 /clang/lib/CodeGen/CodeGenFunction.h
parentf3fe49aac61e49c0ff14602c95c2c3c7bbb6578a (diff)
downloadllvm-941bbec6f4d90763ec3fd97f7380836c7085ea81.zip
llvm-941bbec6f4d90763ec3fd97f7380836c7085ea81.tar.gz
llvm-941bbec6f4d90763ec3fd97f7380836c7085ea81.tar.bz2
[OPENMP] 'omp teams' directive basic support.
Includes parsing and semantic analysis for 'omp teams' directive support from OpenMP 4.0. Adds additional analysis to 'omp target' directive with 'omp teams' directive. llvm-svn: 219197
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r--clang/lib/CodeGen/CodeGenFunction.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h
index d07ad5d..8f9d930 100644
--- a/clang/lib/CodeGen/CodeGenFunction.h
+++ b/clang/lib/CodeGen/CodeGenFunction.h
@@ -2014,6 +2014,7 @@ public:
void EmitOMPOrderedDirective(const OMPOrderedDirective &S);
void EmitOMPAtomicDirective(const OMPAtomicDirective &S);
void EmitOMPTargetDirective(const OMPTargetDirective &S);
+ void EmitOMPTeamsDirective(const OMPTeamsDirective &S);
/// Helpers for 'omp simd' directive.
void EmitOMPLoopBody(const OMPLoopDirective &Directive,