diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-07 13:01:15 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-07 13:01:15 +0000 |
commit | 4acb859fbdad4b5bc9208d3bfaea6847a682e26f (patch) | |
tree | 9e7b794b1f6f141bc4141dbb84cc0d9a1a9e830a /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 8a8b850c98f392ec21d5b1e99338e0145d57fe69 (diff) | |
download | llvm-4acb859fbdad4b5bc9208d3bfaea6847a682e26f.zip llvm-4acb859fbdad4b5bc9208d3bfaea6847a682e26f.tar.gz llvm-4acb859fbdad4b5bc9208d3bfaea6847a682e26f.tar.bz2 |
[OPENMP] Added initial support for 'omp parallel for'.
llvm-svn: 212453
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 055e9356..2d6d99a 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -1903,6 +1903,7 @@ public: void EmitOMPSectionsDirective(const OMPSectionsDirective &S); void EmitOMPSectionDirective(const OMPSectionDirective &S); void EmitOMPSingleDirective(const OMPSingleDirective &S); + void EmitOMPParallelForDirective(const OMPParallelForDirective &S); //===--------------------------------------------------------------------===// // LValue Expression Emission |