Skip to content

Commit de32599

Browse files
committed
Fix function signature
1 parent 0984407 commit de32599

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

flang/lib/Lower/OpenMP/OpenMP.cpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1908,12 +1908,14 @@ genTaskyieldOp(lower::AbstractConverter &converter, lower::SymMap &symTable,
19081908

19091909
static mlir::omp::WorkshareOp
19101910
genWorkshareOp(lower::AbstractConverter &converter, lower::SymMap &symTable,
1911-
semantics::SemanticsContext &semaCtx, lower::pft::Evaluation &eval,
1912-
mlir::Location loc, const ConstructQueue &queue,
1913-
ConstructQueue::iterator item) {
1911+
semantics::SemanticsContext &semaCtx,
1912+
lower::pft::Evaluation &eval, mlir::Location loc,
1913+
const ConstructQueue &queue,
1914+
ConstructQueue::const_iterator item) {
19141915
lower::StatementContext stmtCtx;
19151916
mlir::omp::WorkshareOperands clauseOps;
1916-
genWorkshareClauses(converter, semaCtx, stmtCtx, item->clauses, loc, clauseOps);
1917+
genWorkshareClauses(converter, semaCtx, stmtCtx, item->clauses, loc,
1918+
clauseOps);
19171919

19181920
return genOpWithBody<mlir::omp::WorkshareOp>(
19191921
OpWithBodyGenInfo(converter, symTable, semaCtx, loc, eval,

0 commit comments

Comments
 (0)