diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-06-18 04:14:57 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-06-18 04:14:57 +0000 |
commit | f29276edb7b9c85c9f521eb3e301259bee17aa33 (patch) | |
tree | 5173803cd839d4c3ab843cd43945471c7296784f /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 0039f3f0607702f2d16d60addff74c67869e2144 (diff) | |
download | llvm-f29276edb7b9c85c9f521eb3e301259bee17aa33.zip llvm-f29276edb7b9c85c9f521eb3e301259bee17aa33.tar.gz llvm-f29276edb7b9c85c9f521eb3e301259bee17aa33.tar.bz2 |
[OPENMP] Initial support for '#pragma omp for' (fixed incompatibility with MSVC).
llvm-svn: 211140
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 570e1a8..a222f64 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -1902,6 +1902,7 @@ public: void EmitOMPParallelDirective(const OMPParallelDirective &S); void EmitOMPSimdDirective(const OMPSimdDirective &S); + void EmitOMPForDirective(const OMPForDirective &S); //===--------------------------------------------------------------------===// // LValue Expression Emission |