llvmbot wrote:

<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clangir

@llvm/pr-subscribers-clang

Author: Luca Parigi (Parigi)

<details>
<summary>Changes</summary>

OMPForDirective emit omp.wsloop with omp.loop_nest using CIR ops for 
bounds/step, converting to standard MLIR integers via 
UnrealizedConversionCastOp.

Add reconcile-unrealized-casts pass to the CIR-to-LLVM pipeline. Add CIR-level 
and LLVM IR lowering tests.

---

Patch is 37.00 KiB, truncated to 20.00 KiB below, full version: 
https://github.com/llvm/llvm-project/pull/181841.diff


7 Files Affected:

- (modified) clang/lib/CIR/CodeGen/CIRGenFunction.h (+13) 
- (modified) clang/lib/CIR/CodeGen/CIRGenStmt.cpp (+123-47) 
- (modified) clang/lib/CIR/CodeGen/CIRGenStmtOpenMP.cpp (+197-5) 
- (modified) clang/lib/CIR/Lowering/DirectToLLVM/CMakeLists.txt (+1) 
- (modified) clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp (+6) 
- (added) clang/test/CIR/CodeGenOpenMP/pragma-omp-for.c (+326) 
- (added) clang/test/CIR/Lowering/pragma-omp-for.c (+188) 


``````````diff
diff --git a/clang/lib/CIR/CodeGen/CIRGenFunction.h 
b/clang/lib/CIR/CodeGen/CIRGenFunction.h
index cc0087ba2d6bd..32e3044dc08a5 100644
--- a/clang/lib/CIR/CodeGen/CIRGenFunction.h
+++ b/clang/lib/CIR/CodeGen/CIRGenFunction.h
@@ -63,6 +63,19 @@ class CIRGenFunction : public CIRGenTypeCache {
   /// is where the next operations will be introduced.
   CIRGenBuilderTy &builder;
 
+  /// State used to communicate OpenMP loop bounds from `emitOMPForDirective`
+  /// to `emitForStmt`.
+  struct LoopBounds {
+    mlir::Value lowerBound;
+    mlir::Value upperBound;
+    mlir::Value step;
+    mlir::Type inductionVarType;
+    const VarDecl *inductionVar;
+    bool inclusive;
+  };
+
+  std::optional<LoopBounds> currentOMPLoopBounds;
+
   /// A jump destination is an abstract label, branching to which may
   /// require a jump out through normal cleanups.
   struct JumpDest {
diff --git a/clang/lib/CIR/CodeGen/CIRGenStmt.cpp 
b/clang/lib/CIR/CodeGen/CIRGenStmt.cpp
index db3827340c455..f6b3b976ac499 100644
--- a/clang/lib/CIR/CodeGen/CIRGenStmt.cpp
+++ b/clang/lib/CIR/CodeGen/CIRGenStmt.cpp
@@ -22,6 +22,10 @@
 #include "clang/AST/StmtOpenMP.h"
 #include "clang/CIR/MissingFeatures.h"
 
+// Required to construct OpenMP operations such as `omp.wsloop` and
+// `omp.loop_nest` during lowering.
+#include "mlir/Dialect/OpenMP/OpenMPDialect.h"
+
 using namespace clang;
 using namespace clang::CIRGen;
 using namespace cir;
@@ -939,16 +943,36 @@ CIRGenFunction::emitCXXForRangeStmt(const CXXForRangeStmt 
&s,
   return mlir::success();
 }
 
+/// Emit a `for` statement as either a CIR `cir.for` or, when inside an
+/// OpenMP `#pragma omp for`, an `omp.loop_nest` within the wsloop created
+/// by emitOMPForDirective.
+
 mlir::LogicalResult CIRGenFunction::emitForStmt(const ForStmt &s) {
+
+  // CIR for-loop operation (used in the non-OpenMP case).
   cir::ForOp forOp;
 
+  // OpenMP loop nest operation (used when inside `omp.wsloop`).
+  mlir::omp::LoopNestOp loopNestOp;
+
+  auto scopeLoc = getLoc(s.getSourceRange());
+  bool isOpenMPFor = currentOMPLoopBounds.has_value();
+
+  // This lambda emits either an OpenMP `omp.loop_nest` or a regular CIR
+  // `cir.for`, depending on whether we are inside an OpenMP for directive.
   // TODO: pass in an array of attributes.
   auto forStmtBuilder = [&]() -> mlir::LogicalResult {
     mlir::LogicalResult loopRes = mlir::success();
-    // Evaluate the first part before the loop.
-    if (s.getInit())
-      if (emitStmt(s.getInit(), /*useCurrentScope=*/true).failed())
-        return mlir::failure();
+
+    // For OpenMP loops, init is emitted by emitOMPForDirective before the
+    // wsloop so that the alloca lives outside the loop region.
+    if (!isOpenMPFor) {
+      // Evaluate the first part before the loop.
+      if (s.getInit())
+        if (emitStmt(s.getInit(), /*useCurrentScope=*/true).failed())
+          return mlir::failure();
+    }
+
     assert(!cir::MissingFeatures::loopInfoStack());
     // In the classic codegen, if there are any cleanups between here and the
     // loop-exit scope, a block is created to stage the loop exit. We probably
@@ -956,58 +980,110 @@ mlir::LogicalResult CIRGenFunction::emitForStmt(const 
ForStmt &s) {
     // to be sure we handle all cases.
     assert(!cir::MissingFeatures::requiresCleanups());
 
-    forOp = builder.createFor(
-        getLoc(s.getSourceRange()),
-        /*condBuilder=*/
-        [&](mlir::OpBuilder &b, mlir::Location loc) {
-          assert(!cir::MissingFeatures::createProfileWeightsForLoop());
-          
assert(!cir::MissingFeatures::emitCondLikelihoodViaExpectIntrinsic());
-          mlir::Value condVal;
-          if (s.getCond()) {
-            // If the for statement has a condition scope,
-            // emit the local variable declaration.
-            if (s.getConditionVariable())
-              emitDecl(*s.getConditionVariable());
-            // C99 6.8.5p2/p4: The first substatement is executed if the
-            // expression compares unequal to 0. The condition must be a
-            // scalar type.
-            condVal = evaluateExprAsBool(s.getCond());
-          } else {
-            condVal = cir::ConstantOp::create(b, loc, builder.getTrueAttr());
-          }
-          builder.createCondition(condVal);
-        },
-        /*bodyBuilder=*/
-        [&](mlir::OpBuilder &b, mlir::Location loc) {
-          // The scope of the for loop body is nested within the scope of the
-          // for loop's init-statement and condition.
-          if (emitStmt(s.getBody(), /*useCurrentScope=*/false).failed())
-            loopRes = mlir::failure();
-          emitStopPoint(&s);
-        },
-        /*stepBuilder=*/
-        [&](mlir::OpBuilder &b, mlir::Location loc) {
-          if (s.getInc())
-            if (emitStmt(s.getInc(), /*useCurrentScope=*/true).failed())
+    // OpenMP path: emit omp.loop_nest using bounds from emitOMPForDirective.
+    if (isOpenMPFor) {
+      mlir::OpBuilder::InsertionGuard guard(builder);
+
+      mlir::Type loopBoundsType = currentOMPLoopBounds->inductionVarType;
+      mlir::Value lb = currentOMPLoopBounds->lowerBound;
+      mlir::Value ub = currentOMPLoopBounds->upperBound;
+      mlir::Value step = currentOMPLoopBounds->step;
+      bool inclusive = currentOMPLoopBounds->inclusive;
+      const VarDecl *inductionVar = currentOMPLoopBounds->inductionVar;
+
+      loopNestOp = loopNestOp.create(builder, scopeLoc, 1, lb, ub, step,
+                                     inclusive, nullptr);
+
+      mlir::Region &region = loopNestOp.getRegion();
+      mlir::Block *block = new mlir::Block();
+      region.push_back(block);
+
+      block->addArgument(loopBoundsType, scopeLoc);
+      builder.setInsertionPointToStart(block);
+
+      // Store the IV block argument into the loop variable alloca, converting
+      // back from standard integer to CIR integer type.
+      mlir::Value iv = block->getArgument(0);
+      Address inductionAddr = getAddrOfLocalVar(inductionVar);
+      mlir::Value civVal =
+          mlir::UnrealizedConversionCastOp::create(
+              builder, scopeLoc, inductionAddr.getElementType(), iv)
+              .getResult(0);
+      cir::StoreOp::create(builder, scopeLoc, civVal,
+                           inductionAddr.getPointer(),
+                           /*is_volatile=*/nullptr, /*alignment=*/nullptr,
+                           /*sync_scope=*/nullptr, /*mem_order=*/nullptr);
+
+      // Emit the loop body.
+      if (s.getBody()) {
+        if (emitStmt(s.getBody(), /*useCurrentScope=*/true).failed())
+          loopRes = mlir::failure();
+      }
+
+      mlir::omp::YieldOp::create(builder, getLoc(s.getEndLoc()));
+    } else {
+      forOp = builder.createFor(
+          getLoc(s.getSourceRange()),
+          /*condBuilder=*/
+          [&](mlir::OpBuilder &b, mlir::Location loc) {
+            assert(!cir::MissingFeatures::createProfileWeightsForLoop());
+            assert(
+                !cir::MissingFeatures::emitCondLikelihoodViaExpectIntrinsic());
+            mlir::Value condVal;
+            if (s.getCond()) {
+              // If the for statement has a condition scope,
+              // emit the local variable declaration.
+              if (s.getConditionVariable())
+                emitDecl(*s.getConditionVariable());
+              // C99 6.8.5p2/p4: The first substatement is executed if the
+              // expression compares unequal to 0. The condition must be a
+              // scalar type.
+              condVal = evaluateExprAsBool(s.getCond());
+            } else {
+              condVal = cir::ConstantOp::create(b, loc, builder.getTrueAttr());
+            }
+            builder.createCondition(condVal);
+          },
+          /*bodyBuilder=*/
+          [&](mlir::OpBuilder &b, mlir::Location loc) {
+            // The scope of the for loop body is nested within the scope of the
+            // for loop's init-statement and condition.
+            if (emitStmt(s.getBody(), /*useCurrentScope=*/false).failed())
               loopRes = mlir::failure();
-          builder.createYield(loc);
-        });
+            emitStopPoint(&s);
+          },
+          /*stepBuilder=*/
+          [&](mlir::OpBuilder &b, mlir::Location loc) {
+            if (s.getInc())
+              if (emitStmt(s.getInc(), /*useCurrentScope=*/true).failed())
+                loopRes = mlir::failure();
+            builder.createYield(loc);
+          });
+    }
     return loopRes;
   };
 
   auto res = mlir::success();
-  auto scopeLoc = getLoc(s.getSourceRange());
-  cir::ScopeOp::create(builder, scopeLoc, /*scopeBuilder=*/
-                       [&](mlir::OpBuilder &b, mlir::Location loc) {
-                         LexicalScope lexScope{*this, loc,
-                                               builder.getInsertionBlock()};
-                         res = forStmtBuilder();
-                       });
+
+  if (isOpenMPFor) {
+    res = forStmtBuilder();
+  } else {
+    cir::ScopeOp::create(builder, scopeLoc, /*scopeBuilder=*/
+                         [&](mlir::OpBuilder &b, mlir::Location loc) {
+                           LexicalScope lexScope{*this, loc,
+                                                 builder.getInsertionBlock()};
+                           res = forStmtBuilder();
+                         });
+  }
 
   if (res.failed())
     return res;
 
-  terminateBody(builder, forOp.getBody(), getLoc(s.getEndLoc()));
+  // Only regular CIR loops require explicit termination.
+  // OpenMP wsloop/loop_nest regions terminate via omp.yield.
+  if (!isOpenMPFor) {
+    terminateBody(builder, forOp.getBody(), getLoc(s.getEndLoc()));
+  }
   return mlir::success();
 }
 
diff --git a/clang/lib/CIR/CodeGen/CIRGenStmtOpenMP.cpp 
b/clang/lib/CIR/CodeGen/CIRGenStmtOpenMP.cpp
index 0d3b44db98307..a3eab79fbba64 100644
--- a/clang/lib/CIR/CodeGen/CIRGenStmtOpenMP.cpp
+++ b/clang/lib/CIR/CodeGen/CIRGenStmtOpenMP.cpp
@@ -13,8 +13,11 @@
 #include "CIRGenBuilder.h"
 #include "CIRGenFunction.h"
 #include "mlir/Dialect/OpenMP/OpenMPDialect.h"
+#include "mlir/IR/BuiltinOps.h"
 #include "clang/AST/StmtOpenMP.h"
+#include "clang/CIR/Dialect/IR/CIRDialect.h"
 #include "llvm/Frontend/OpenMP/OMPConstants.h"
+
 using namespace clang;
 using namespace clang::CIRGen;
 
@@ -65,6 +68,200 @@ CIRGenFunction::emitOMPParallelDirective(const 
OMPParallelDirective &s) {
   return res;
 }
 
+// Helpers and implementation for emitOMPForDirective, which lowers an
+// OMPForDirective into an omp.wsloop + omp.loop_nest.
+
+namespace {
+/// Extract integer literal value from an expression, if present.
+static std::optional<int64_t> getIntLiteralValue(const Expr *expr) {
+  if (const auto *intLit = dyn_cast<IntegerLiteral>(expr->IgnoreImpCasts()))
+    return intLit->getValue().getSExtValue();
+  return std::nullopt;
+}
+
+/// Ensure a CIR value has the given CIR integer type, inserting an integral
+/// cast if necessary. Loads through CIR pointers first.
+static mlir::Value ensureCIRIntType(CIRGenBuilderTy &builder,
+                                    mlir::Location loc, mlir::Value cirValue,
+                                    cir::IntType targetCIRType) {
+  if (mlir::isa<cir::PointerType>(cirValue.getType()))
+    cirValue = cir::LoadOp::create(builder, loc, cirValue).getResult();
+
+  if (cirValue.getType() == targetCIRType)
+    return cirValue;
+
+  return builder.createCast(loc, cir::CastKind::integral, cirValue,
+                            targetCIRType);
+}
+
+/// Convert a CIR integer value to a standard MLIR integer type suitable for
+/// use as an omp.loop_nest operand.
+static mlir::Value cirIntToStdInt(mlir::OpBuilder &builder, mlir::Location loc,
+                                  mlir::Value cirValue) {
+  auto cirIntType = mlir::cast<cir::IntType>(cirValue.getType());
+  mlir::Type stdIntType = builder.getIntegerType(cirIntType.getWidth());
+  return mlir::UnrealizedConversionCastOp::create(builder, loc, stdIntType,
+                                                  cirValue)
+      .getResult(0);
+}
+} // anonymous namespace
+
+mlir::LogicalResult
+CIRGenFunction::emitOMPForDirective(const OMPForDirective &s) {
+
+  mlir::LogicalResult res = mlir::success();
+  mlir::Location begin = getLoc(s.getBeginLoc());
+
+  // Extract the underlying canonical `for` loop from the CapturedStmt
+  const CapturedStmt *capturedStmt = s.getInnermostCapturedStmt();
+  const ForStmt *forStmt = dyn_cast<ForStmt>(capturedStmt->getCapturedStmt());
+
+  if (!forStmt) {
+    return mlir::failure();
+  }
+
+  // Loop bounds are first built as CIR integer values, then converted to
+  // standard MLIR integers via UnrealizedConversionCastOp before being
+  // passed to omp.loop_nest (which requires IntLikeType operands).
+  mlir::Value lowerBound;
+  mlir::Value upperBound;
+  mlir::Value step;
+  bool inclusive = false;
+
+  // Extract loop variable type and lower bound.
+  const auto *declStmt = dyn_cast_or_null<DeclStmt>(forStmt->getInit());
+  const auto *varDecl =
+      declStmt ? dyn_cast<VarDecl>(declStmt->getSingleDecl()) : nullptr;
+
+  if (!varDecl)
+    return mlir::failure();
+
+  // The loop variable's CIR integer type is the canonical type for all bounds.
+  QualType loopVarQType = varDecl->getType();
+  auto cirType = convertType(loopVarQType);
+  auto cirIntType = mlir::cast<cir::IntType>(cirType);
+
+  // Extract lower bound.
+  if (!varDecl->hasInit())
+    return mlir::failure();
+
+  if (auto constVal = getIntLiteralValue(varDecl->getInit())) {
+    lowerBound = builder.getConstInt(begin, cirIntType, *constVal);
+  } else {
+    mlir::Value cirValue = emitScalarExpr(varDecl->getInit());
+    lowerBound = ensureCIRIntType(builder, begin, cirValue, cirIntType);
+  }
+
+  // Extract upper bound and comparison operator.
+  const auto *condBinOp = dyn_cast_or_null<BinaryOperator>(forStmt->getCond());
+  if (!condBinOp)
+    return mlir::failure();
+
+  BinaryOperatorKind opKind = condBinOp->getOpcode();
+
+  // Determine which side of the comparison holds the upper bound.
+  // Canonical forms: `i < ub`, `i <= ub` (var on LHS, bound on RHS)
+  //                  `ub > i`, `ub >= i` (bound on LHS, var on RHS)
+  const Expr *boundExpr = nullptr;
+  if (opKind == BO_LT || opKind == BO_LE) {
+    boundExpr = condBinOp->getRHS();
+    inclusive = (opKind == BO_LE);
+  } else if (opKind == BO_GT || opKind == BO_GE) {
+    boundExpr = condBinOp->getLHS();
+    inclusive = (opKind == BO_GE);
+  } else {
+    return mlir::failure();
+  }
+
+  if (auto constVal = getIntLiteralValue(boundExpr)) {
+    upperBound = builder.getConstInt(begin, cirIntType, *constVal);
+  } else {
+    mlir::Value cirValue = emitScalarExpr(boundExpr);
+    upperBound = ensureCIRIntType(builder, begin, cirValue, cirIntType);
+  }
+
+  // Extract step.
+  if (const auto *unaryOp =
+          dyn_cast_or_null<UnaryOperator>(forStmt->getInc())) {
+    int64_t val = unaryOp->isIncrementOp() ? 1 : -1;
+    step = builder.getConstInt(begin, cirIntType, val);
+  } else if (const auto *binOp =
+                 dyn_cast_or_null<BinaryOperator>(forStmt->getInc())) {
+    const Expr *stepExpr = nullptr;
+
+    if (binOp->isCompoundAssignmentOp()) {
+      stepExpr = binOp->getRHS();
+    } else if (binOp->isAssignmentOp()) {
+      // i = i + step or i = step + i
+      if (auto *subBinOp =
+              dyn_cast<BinaryOperator>(binOp->getRHS()->IgnoreImpCasts())) {
+        const Expr *lhs = subBinOp->getLHS()->IgnoreImpCasts();
+        const Expr *rhs = subBinOp->getRHS()->IgnoreImpCasts();
+        // Identify which operand is the loop variable and which is the step.
+        if (auto *lhsRef = dyn_cast<DeclRefExpr>(lhs)) {
+          stepExpr = (lhsRef->getDecl() == varDecl) ? rhs : lhs;
+        } else if (auto *rhsRef = dyn_cast<DeclRefExpr>(rhs)) {
+          stepExpr = (rhsRef->getDecl() == varDecl) ? lhs : rhs;
+        }
+      }
+    }
+
+    if (stepExpr) {
+      if (auto constVal = getIntLiteralValue(stepExpr)) {
+        step = builder.getConstInt(begin, cirIntType, *constVal);
+      } else {
+        mlir::Value cirValue = emitScalarExpr(stepExpr);
+        step = ensureCIRIntType(builder, begin, cirValue, cirIntType);
+      }
+    }
+  }
+
+  // Default to unit step if not recognized.
+  if (!step)
+    step = builder.getConstInt(begin, cirIntType, 1);
+
+  // Emit init, convert bounds to std integers, and create the wsloop.
+
+  // Emit the loop init statement (e.g. `int i = 0`) to create the alloca
+  // for the induction variable *before* the wsloop.
+  if (forStmt->getInit())
+    if (emitStmt(forStmt->getInit(), /*useCurrentScope=*/true).failed())
+      return mlir::failure();
+
+  // Convert CIR integer bounds to standard MLIR integers at the boundary.
+  // omp.loop_nest requires IntLikeType (AnyInteger | Index), not CIR types.
+  mlir::Value stdLB = cirIntToStdInt(builder, begin, lowerBound);
+  mlir::Value stdUB = cirIntToStdInt(builder, begin, upperBound);
+  mlir::Value stdStep = cirIntToStdInt(builder, begin, step);
+  mlir::Type loopBoundsType = stdLB.getType();
+
+  currentOMPLoopBounds =
+      LoopBounds{stdLB, stdUB, stdStep, loopBoundsType, varDecl, inclusive};
+
+  // Create wsloop with empty region
+  llvm::SmallVector<mlir::Type> retTy;
+  llvm::SmallVector<mlir::Value> operands;
+  auto wsloopOp = mlir::omp::WsloopOp::create(builder, begin, retTy, operands);
+
+  mlir::Region &region = wsloopOp.getRegion();
+  mlir::Block *block = new mlir::Block();
+  region.push_back(block);
+
+  // Emit the ForStmt body (will create loop_nest when it detects OpenMP
+  // context)
+  mlir::OpBuilder::InsertionGuard guard(builder);
+  builder.setInsertionPointToStart(block);
+
+  if (emitStmt(forStmt, /*useCurrentScope=*/false).failed()) {
+    res = mlir::failure();
+  }
+
+  // Clear loop-bound state
+  currentOMPLoopBounds = std::nullopt;
+
+  return res;
+}
+
 mlir::LogicalResult
 CIRGenFunction::emitOMPTaskwaitDirective(const OMPTaskwaitDirective &s) {
   getCIRGenModule().errorNYI(s.getSourceRange(), "OpenMP 
OMPTaskwaitDirective");
@@ -113,11 +310,6 @@ CIRGenFunction::emitOMPFuseDirective(const 
OMPFuseDirective &s) {
   return mlir::failure();
 }
 mlir::LogicalResult
-CIRGenFunction::emitOMPForDirective(const OMPForDirective &s) {
-  getCIRGenModule().errorNYI(s.getSourceRange(), "OpenMP OMPForDirective");
-  return mlir::failure();
-}
-mlir::LogicalResult
 CIRGenFunction::emitOMPForSimdDirective(const OMPForSimdDirective &s) {
   getCIRGenModule().errorNYI(s.getSourceRange(), "OpenMP OMPForSimdDirective");
   return mlir::failure();
diff --git a/clang/lib/CIR/Lowering/DirectToLLVM/CMakeLists.txt 
b/clang/lib/CIR/Lowering/DirectToLLVM/CMakeLists.txt
index c7467fe40ba30..49864dcdb62d5 100644
--- a/clang/lib/CIR/Lowering/DirectToLLVM/CMakeLists.txt
+++ b/clang/lib/CIR/Lowering/DirectToLLVM/CMakeLists.txt
@@ -22,6 +22,7 @@ add_clang_library(clangCIRLoweringDirectToLLVM
   MLIRBuiltinToLLVMIRTranslation
   MLIRLLVMToLLVMIRTranslation
   MLIROpenMPToLLVMIRTranslation
+  MLIRReconcileUnrealizedCasts
   MLIRIR
   )
 
diff --git a/clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp 
b/clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
index 28b3454d20613..0feeaf748fd75 100644
--- a/clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
+++ b/clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
@@ -17,6 +17,7 @@
 #include <optional>
 
 #include "mlir/Conversion/LLVMCommon/TypeConverter.h"
+#include "mlir/Conversion/ReconcileUnrealizedCasts/ReconcileUnrealizedCasts.h"
 #include "mlir/Dialect/DLTI/DLTI.h"
 #include "mlir/Dialect/Func/IR/FuncOps.h"
 #include "mlir/Dialect/LLVMIR/LLVMDialect.h"
@@ -3562,6 +3563,10 @@ void ConvertCIRToLLVMPass::runOnOperation() {
   target.addIllegalDialect<mlir::BuiltinDialect, cir::CIRDialect,
                            mlir::func::FuncDialect>();
 
+  // Allow unrealized conversion casts to survive CIR-to-LLVM conversion.
+  // They are resolved by the reconcile-unrealized-casts pass that runs after.
+  target.addLegalOp<mlir::UnrealizedConversionCastOp>();
+
   llvm::SmallVector<mlir::Operation *> ops;
   ops.push_back(module);
   collectUnreachable(module, ops);
@@ -4800,6 +4805,7 @@ std::unique_ptr<mlir::Pass> createConvertCIRToLLVMPass() {
 void populateCIRToLLVMPasses(mlir::OpPassManager &pm) {
   mlir::populateCIRPreLoweringPasses(pm);
   pm.addPass(createConvertCIRToLLVMPass());
+  pm.addPass(mlir::createReconcileUnrealizedCa...
[truncated]

``````````

</details>


https://github.com/llvm/llvm-project/pull/181841
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to