commit | f29276edb7b9c85c9f521eb3e301259bee17aa33 | [log] [tgz] |
---|---|---|
author | Alexey Bataev <a.bataev@hotmail.com> | Wed Jun 18 04:14:57 2014 +0000 |
committer | Alexey Bataev <a.bataev@hotmail.com> | Wed Jun 18 04:14:57 2014 +0000 |
tree | 5173803cd839d4c3ab843cd43945471c7296784f | |
parent | 0039f3f0607702f2d16d60addff74c67869e2144 [diff] [blame] |
[OPENMP] Initial support for '#pragma omp for' (fixed incompatibility with MSVC). llvm-svn: 211140
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp index 22373cd..e3d07dc 100644 --- a/clang/lib/CodeGen/CGStmt.cpp +++ b/clang/lib/CodeGen/CGStmt.cpp
@@ -179,6 +179,9 @@ case Stmt::OMPSimdDirectiveClass: EmitOMPSimdDirective(cast<OMPSimdDirective>(*S)); break; + case Stmt::OMPForDirectiveClass: + EmitOMPForDirective(cast<OMPForDirective>(*S)); + break; } }