[flang-commits] [flang] [flang][openacc] Added acc::RecipeInterface for getting alloca insertion point. (PR #68464)

Slava Zakharin via flang-commits flang-commits at lists.llvm.org
Fri Oct 6 21:04:31 PDT 2023


================
@@ -13,6 +13,9 @@ include "mlir/Pass/PassBase.td"
 def ConvertHLFIRtoFIR : Pass<"convert-hlfir-to-fir", "::mlir::ModuleOp"> {
   let summary = "Lower High-Level FIR to FIR";
   let constructor = "hlfir::createConvertHLFIRtoFIRPass()";
+  let dependentDialects = [
----------------
vzakhari wrote:

Yep, the added lit test would not work without it.  It does not have `func.func`, so the `FuncDialect` is not implicitly loaded. The pass inserts a new `FuncOp`, though, with the dialect being loaded.

https://github.com/llvm/llvm-project/pull/68464


More information about the flang-commits mailing list