diff options
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 1ee45b5..d07ad5d 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2016,9 +2016,10 @@ public: void EmitOMPTargetDirective(const OMPTargetDirective &S); /// Helpers for 'omp simd' directive. - void EmitOMPSimdBody(const OMPLoopDirective &Directive, bool SeparateIter); - void EmitOMPSimdLoop(const OMPLoopDirective &S, OMPPrivateScope &LoopScope, - bool SeparateIter); + void EmitOMPLoopBody(const OMPLoopDirective &Directive, + bool SeparateIter = false); + void EmitOMPInnerLoop(const OMPLoopDirective &S, OMPPrivateScope &LoopScope, + bool SeparateIter = false); void EmitOMPSimdFinal(const OMPLoopDirective &S); //===--------------------------------------------------------------------===// |