From 26fd21ab80995f7f117df60958ad8954d315e1aa Mon Sep 17 00:00:00 2001 From: Kelvin Li Date: Wed, 28 Dec 2016 17:57:07 +0000 Subject: Fix format. NFC llvm-svn: 290673 --- clang/lib/CodeGen/CGStmtOpenMP.cpp | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'clang/lib/CodeGen') diff --git a/clang/lib/CodeGen/CGStmtOpenMP.cpp b/clang/lib/CodeGen/CGStmtOpenMP.cpp index fad8b7314f2..1572c537047 100644 --- a/clang/lib/CodeGen/CGStmtOpenMP.cpp +++ b/clang/lib/CodeGen/CGStmtOpenMP.cpp @@ -2005,17 +2005,20 @@ void CodeGenFunction::EmitOMPTeamsDistributeParallelForDirective( void CodeGenFunction::EmitOMPTargetTeamsDirective( const OMPTargetTeamsDirective &S) { - CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_target_teams, - [&S](CodeGenFunction &CGF, PrePostActionTy &) { - CGF.EmitStmt(cast(S.getAssociatedStmt())->getCapturedStmt()); + CGM.getOpenMPRuntime().emitInlinedDirective( + *this, OMPD_target_teams, [&S](CodeGenFunction &CGF, PrePostActionTy &) { + CGF.EmitStmt( + cast(S.getAssociatedStmt())->getCapturedStmt()); }); } void CodeGenFunction::EmitOMPTargetTeamsDistributeDirective( const OMPTargetTeamsDistributeDirective &S) { - CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_target_teams_distribute, + CGM.getOpenMPRuntime().emitInlinedDirective( + *this, OMPD_target_teams_distribute, [&S](CodeGenFunction &CGF, PrePostActionTy &) { - CGF.EmitStmt(cast(S.getAssociatedStmt())->getCapturedStmt()); + CGF.EmitStmt( + cast(S.getAssociatedStmt())->getCapturedStmt()); }); } -- cgit v1.2.3