From 2df347ad96350cc4f0761db412608193703a46c7 Mon Sep 17 00:00:00 2001 From: Alexey Bataev Date: Fri, 18 Jul 2014 10:17:07 +0000 Subject: [OPENMP] Initial parsing and sema analysis for 'taskwait' directive. llvm-svn: 213363 --- clang/lib/CodeGen/CGStmt.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'clang/lib/CodeGen/CGStmt.cpp') 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(*S)); break; + case Stmt::OMPTaskwaitDirectiveClass: + EmitOMPTaskwaitDirective(cast(*S)); + break; } } -- cgit v1.2.3