diff options
author | Richard Trieu <rtrieu@google.com> | 2016-02-18 22:34:54 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2016-02-18 22:34:54 +0000 |
commit | cc3949d99af2b2ea2f31c1694eeef7cea0f484f0 (patch) | |
tree | 7b6a787cb2352bf0f9ced314eaff8aad71618459 /clang/lib/CodeGen/CGStmtOpenMP.cpp | |
parent | 7a08381403b54cd8998f3c922f18b65867e3c07c (diff) | |
download | bcm5719-llvm-cc3949d99af2b2ea2f31c1694eeef7cea0f484f0.tar.gz bcm5719-llvm-cc3949d99af2b2ea2f31c1694eeef7cea0f484f0.zip |
Remove use of builtin comma operator.
Cleanup for upcoming Clang warning -Wcomma. No functionality change intended.
llvm-svn: 261271
Diffstat (limited to 'clang/lib/CodeGen/CGStmtOpenMP.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGStmtOpenMP.cpp | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/clang/lib/CodeGen/CGStmtOpenMP.cpp b/clang/lib/CodeGen/CGStmtOpenMP.cpp index a4bc354ddb6..9ccac258ee0 100644 --- a/clang/lib/CodeGen/CGStmtOpenMP.cpp +++ b/clang/lib/CodeGen/CGStmtOpenMP.cpp @@ -201,7 +201,8 @@ CodeGenFunction::GenerateOpenMPCapturedStmtFunction(const CapturedStmt &S) { // use the value that we get from the arguments. if (I->capturesVariableByCopy() && FD->getType()->isAnyPointerType()) { setAddrOfLocalVar(I->getCapturedVar(), GetAddrOfLocalVar(Args[Cnt])); - ++Cnt, ++I; + ++Cnt; + ++I; continue; } @@ -242,7 +243,8 @@ CodeGenFunction::GenerateOpenMPCapturedStmtFunction(const CapturedStmt &S) { CXXThisValue = EmitLoadOfLValue(ArgLVal, Args[Cnt]->getLocation()).getScalarVal(); } - ++Cnt, ++I; + ++Cnt; + ++I; } PGO.assignRegionCounters(GlobalDecl(CD), F); @@ -489,7 +491,8 @@ bool CodeGenFunction::EmitOMPFirstprivateClause(const OMPExecutableDirective &D, // Silence the warning about unused variable. (void)IsRegistered; } - ++IRef, ++InitsRef; + ++IRef; + ++InitsRef; } } return FirstprivateIsLastprivate && !EmittedAsFirstprivate.empty(); @@ -628,7 +631,8 @@ bool CodeGenFunction::EmitOMPLastprivateClauseInit( (void)IsRegistered; } } - ++IRef, ++IDestRef; + ++IRef; + ++IDestRef; } } return HasAtLeastOneLastprivate; @@ -917,7 +921,9 @@ void CodeGenFunction::EmitOMPReductionClauseInit( }); } } - ++ILHS, ++IRHS, ++IPriv; + ++ILHS; + ++IRHS; + ++IPriv; } } } @@ -2013,7 +2019,8 @@ void CodeGenFunction::EmitOMPTaskDirective(const OMPTaskDirective &S) { FirstprivateCopies.push_back(IInit); FirstprivateInits.push_back(*IElemInitRef); } - ++IRef, ++IElemInitRef; + ++IRef; + ++IElemInitRef; } } // Build list of dependences. |