aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorAlexey Bataev <a.bataev@hotmail.com>2014-10-09 04:18:56 +0000
committerAlexey Bataev <a.bataev@hotmail.com>2014-10-09 04:18:56 +0000
commit13314bf5269a41a583c0019fe74bb1cdb86e7d44 (patch)
treebad6efc4d1819c103d94705825d41d878e5430ae /clang/lib/CodeGen/CodeGenFunction.h
parent7be03d09cd2e2bc76c86bb0730770796629fb76c (diff)
downloadllvm-13314bf5269a41a583c0019fe74bb1cdb86e7d44.zip
llvm-13314bf5269a41a583c0019fe74bb1cdb86e7d44.tar.gz
llvm-13314bf5269a41a583c0019fe74bb1cdb86e7d44.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: 219385
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 e471f15..11d2b04 100644
--- a/clang/lib/CodeGen/CodeGenFunction.h
+++ b/clang/lib/CodeGen/CodeGenFunction.h
@@ -2027,6 +2027,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,