[Mlir-commits] [mlir] [MLIR][OpenMP] Add `omp.private` op (PR #80955)
Kiran Chandramohan
llvmlistbot at llvm.org
Fri Feb 9 14:52:49 PST 2024
================
@@ -1594,6 +1594,73 @@ LogicalResult DataBoundsOp::verify() {
return success();
}
+LogicalResult PrivateClauseOp::verify() {
+ Type symType = getSymType();
+
+ auto verifyTerminator = [&](Operation *terminator) -> LogicalResult {
+ if (!terminator->hasSuccessors() && !llvm::isa<YieldOp>(terminator))
+ return mlir::emitError(terminator->getLoc())
----------------
kiranchandramohan wrote:
Is the mlir prefix here and in several places below required?
https://github.com/llvm/llvm-project/pull/80955
More information about the Mlir-commits
mailing list