diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-06-25 11:44:49 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-06-25 11:44:49 +0000 |
commit | d3f8dd2d1595a626412202385461978c43eb049d (patch) | |
tree | e66eed96fa2181897866ce8a280637e3ca7d096a /clang/lib/CodeGen/CGStmt.cpp | |
parent | 0b2d93c4f0c39f1cedb7a2ed59f3102eb7875efa (diff) | |
download | bcm5719-llvm-d3f8dd2d1595a626412202385461978c43eb049d.tar.gz bcm5719-llvm-d3f8dd2d1595a626412202385461978c43eb049d.zip |
[OPENMP] Initial support for 'sections' directive.
llvm-svn: 211685
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 e3d07dca642..cadfe399fa6 100644 --- a/clang/lib/CodeGen/CGStmt.cpp +++ b/clang/lib/CodeGen/CGStmt.cpp @@ -182,6 +182,9 @@ void CodeGenFunction::EmitStmt(const Stmt *S) { case Stmt::OMPForDirectiveClass: EmitOMPForDirective(cast<OMPForDirective>(*S)); break; + case Stmt::OMPSectionsDirectiveClass: + EmitOMPSectionsDirective(cast<OMPSectionsDirective>(*S)); + break; } } |