commit | d1e40fbfe1c38f5778c739d1fc1b3bcf156ccb58 | [log] [tgz] |
---|---|---|
author | Alexey Bataev <a.bataev@hotmail.com> | Thu Jun 26 12:05:45 2014 +0000 |
committer | Alexey Bataev <a.bataev@hotmail.com> | Thu Jun 26 12:05:45 2014 +0000 |
tree | 30b273a3b64072c964ed33986d2de6362af8c7d8 | |
parent | aee45418287cdcc1387c56e0c0d08990c322b45b [diff] [blame] |
[OPENMP] Initial parsing and sema analysis for 'single' directive. llvm-svn: 211774
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp index c3ad8b36..8edee89 100644 --- a/clang/lib/CodeGen/CGStmt.cpp +++ b/clang/lib/CodeGen/CGStmt.cpp
@@ -188,6 +188,9 @@ case Stmt::OMPSectionDirectiveClass: EmitOMPSectionDirective(cast<OMPSectionDirective>(*S)); break; + case Stmt::OMPSingleDirectiveClass: + EmitOMPSingleDirective(cast<OMPSingleDirective>(*S)); + break; } }