Skip to content

Commit ae8a136

Browse files
Roll back one more uninted change in mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
1 parent f3df411 commit ae8a136

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -757,9 +757,9 @@ convertOmpTaskOp(omp::TaskOp taskOp, llvm::IRBuilderBase &builder,
757757
case mlir::omp::ClauseTaskDepend::taskdependin:
758758
type = llvm::omp::RTLDependenceKindTy::DepIn;
759759
break;
760-
// The OpenMP runtime requires that the codegen for 'depend' clause for
761-
// 'out' dependency kind must be the same as codegen for 'depend' clause
762-
// with 'inout' dependency.
760+
// The OpenMP runtime requires that the codegen for 'depend' clause for
761+
// 'out' dependency kind must be the same as codegen for 'depend' clause
762+
// with 'inout' dependency.
763763
case mlir::omp::ClauseTaskDepend::taskdependout:
764764
case mlir::omp::ClauseTaskDepend::taskdependinout:
765765
type = llvm::omp::RTLDependenceKindTy::DepInOut;

0 commit comments

Comments
 (0)