| commit | 4acb859fbdad4b5bc9208d3bfaea6847a682e26f | [log] [tgz] |
|---|---|---|
| author | Alexey Bataev <a.bataev@hotmail.com> | Mon Jul 07 13:01:15 2014 +0000 |
| committer | Alexey Bataev <a.bataev@hotmail.com> | Mon Jul 07 13:01:15 2014 +0000 |
| tree | 9e7b794b1f6f141bc4141dbb84cc0d9a1a9e830a | |
| parent | 8a8b850c98f392ec21d5b1e99338e0145d57fe69 [diff] [blame] |
[OPENMP] Added initial support for 'omp parallel for'. llvm-svn: 212453
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp index 6fed5d3..72dd17f 100644 --- a/clang/lib/CodeGen/CGStmt.cpp +++ b/clang/lib/CodeGen/CGStmt.cpp
@@ -194,6 +194,9 @@ case Stmt::OMPSingleDirectiveClass: EmitOMPSingleDirective(cast<OMPSingleDirective>(*S)); break; + case Stmt::OMPParallelForDirectiveClass: + EmitOMPParallelForDirective(cast<OMPParallelForDirective>(*S)); + break; } }