diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-05-06 10:08:46 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-05-06 10:08:46 +0000 |
commit | 9959db5fa9d4972b6f5510344d502ff4932b0c0e (patch) | |
tree | f9022d5800c5e078854567445218a23710ff1cba /clang/lib/CodeGen/CodeGenFunction.h | |
parent | fdce7cea931fc6fcb995a1193b3ae7f78a913f0d (diff) | |
download | llvm-9959db5fa9d4972b6f5510344d502ff4932b0c0e.zip llvm-9959db5fa9d4972b6f5510344d502ff4932b0c0e.tar.gz llvm-9959db5fa9d4972b6f5510344d502ff4932b0c0e.tar.bz2 |
[OPENMP] Initial codegen for '#pragma omp parallel'
llvm-svn: 208077
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index ec9601e0..73f6b68 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -1878,6 +1878,9 @@ public: llvm::Function *GenerateCapturedStmtFunction(const CapturedDecl *CD, const RecordDecl *RD, SourceLocation Loc); + llvm::Value *GenerateCapturedStmtArgument(const CapturedStmt &S); + + void EmitOMPParallelDirective(const OMPParallelDirective &S); //===--------------------------------------------------------------------===// // LValue Expression Emission |