diff options
author | Alexander Musman <alexander.musman@gmail.com> | 2014-09-23 09:33:00 +0000 |
---|---|---|
committer | Alexander Musman <alexander.musman@gmail.com> | 2014-09-23 09:33:00 +0000 |
commit | e4e893bb360f823b73597b5a4e9ff917b883ba3e (patch) | |
tree | ff2692c871bc2287ba29769f6d72c72040c93465 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | caf534ef968e99f51d7066c0940645044a19d06a (diff) | |
download | llvm-e4e893bb360f823b73597b5a4e9ff917b883ba3e.zip llvm-e4e893bb360f823b73597b5a4e9ff917b883ba3e.tar.gz llvm-e4e893bb360f823b73597b5a4e9ff917b883ba3e.tar.bz2 |
[OPENMP] Parsing/Sema of directive omp parallel for simd
llvm-svn: 218299
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 4e89725..63e0f63 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -1935,6 +1935,7 @@ public: void EmitOMPMasterDirective(const OMPMasterDirective &S); void EmitOMPCriticalDirective(const OMPCriticalDirective &S); void EmitOMPParallelForDirective(const OMPParallelForDirective &S); + void EmitOMPParallelForSimdDirective(const OMPParallelForSimdDirective &S); void EmitOMPParallelSectionsDirective(const OMPParallelSectionsDirective &S); void EmitOMPTaskDirective(const OMPTaskDirective &S); void EmitOMPTaskyieldDirective(const OMPTaskyieldDirective &S); |