diff options
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
| -rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 2ba893e6a35..e359876981f 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2236,7 +2236,7 @@ public:  private:    /// Helpers for the OpenMP loop directives. -  void EmitOMPLoopBody(const OMPLoopDirective &D); +  void EmitOMPLoopBody(const OMPLoopDirective &D, JumpDest LoopExit);    void EmitOMPSimdInit(const OMPLoopDirective &D);    void EmitOMPSimdFinal(const OMPLoopDirective &D);    /// \brief Emit code for the worksharing loop-based directive. @@ -2248,6 +2248,8 @@ private:                             OMPPrivateScope &LoopScope, bool Ordered,                             llvm::Value *LB, llvm::Value *UB, llvm::Value *ST,                             llvm::Value *IL, llvm::Value *Chunk); +  /// \brief Emit code for sections directive. +  OpenMPDirectiveKind EmitSections(const OMPExecutableDirective &S);  public: | 

