diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-18 10:17:07 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-18 10:17:07 +0000 |
commit | 2df347ad96350cc4f0761db412608193703a46c7 (patch) | |
tree | d45673a081abd8f272ddaa0d4622bb6f49c8ec1f /clang/lib/CodeGen/CGStmt.cpp | |
parent | 7a86a548b94d7316345481498a46335e1a220406 (diff) | |
download | bcm5719-llvm-2df347ad96350cc4f0761db412608193703a46c7.tar.gz bcm5719-llvm-2df347ad96350cc4f0761db412608193703a46c7.zip |
[OPENMP] Initial parsing and sema analysis for 'taskwait' directive.
llvm-svn: 213363
Diffstat (limited to 'clang/lib/CodeGen/CGStmt.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGStmt.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp index 5da12222fc8..cd970c747c0 100644 --- a/clang/lib/CodeGen/CGStmt.cpp +++ b/clang/lib/CodeGen/CGStmt.cpp @@ -212,6 +212,9 @@ void CodeGenFunction::EmitStmt(const Stmt *S) { case Stmt::OMPBarrierDirectiveClass: EmitOMPBarrierDirective(cast<OMPBarrierDirective>(*S)); break; + case Stmt::OMPTaskwaitDirectiveClass: + EmitOMPTaskwaitDirective(cast<OMPTaskwaitDirective>(*S)); + break; } } |