From c77dd5257a9388a34d4bc7b0105be88bc456b192 Mon Sep 17 00:00:00 2001 From: Alexey Bataev Date: Tue, 17 Jun 2014 11:49:22 +0000 Subject: [OPENMP] Initial support for '#pragma omp for'. llvm-svn: 211096 --- clang/lib/CodeGen/CGStmt.cpp | 3 +++ clang/lib/CodeGen/CGStmtOpenMP.cpp | 3 +++ clang/lib/CodeGen/CodeGenFunction.h | 1 + 3 files changed, 7 insertions(+) (limited to 'clang/lib/CodeGen') diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp index 22373cddf30..e3d07dca642 100644 --- a/clang/lib/CodeGen/CGStmt.cpp +++ b/clang/lib/CodeGen/CGStmt.cpp @@ -179,6 +179,9 @@ void CodeGenFunction::EmitStmt(const Stmt *S) { case Stmt::OMPSimdDirectiveClass: EmitOMPSimdDirective(cast(*S)); break; + case Stmt::OMPForDirectiveClass: + EmitOMPForDirective(cast(*S)); + break; } } diff --git a/clang/lib/CodeGen/CGStmtOpenMP.cpp b/clang/lib/CodeGen/CGStmtOpenMP.cpp index 17d8dd1bd2f..9f915fa2d37 100644 --- a/clang/lib/CodeGen/CGStmtOpenMP.cpp +++ b/clang/lib/CodeGen/CGStmtOpenMP.cpp @@ -76,3 +76,6 @@ void CodeGenFunction::EmitOMPSimdDirective(const OMPSimdDirective &S) { EmitStmt(Body); } +void CodeGenFunction::EmitOMPForDirective(const OMPForDirective &) { + llvm_unreachable("Not supported yet."); +} diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 570e1a89eb0..a222f646c61 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 -- cgit v1.2.3