[Mlir-commits] [llvm] [mlir] [MLIR] Add initial convert-memref-to-emitc pass (PR #85389)
Marius Brehler
llvmlistbot at llvm.org
Thu Mar 21 04:16:48 PDT 2024
================
@@ -0,0 +1,20 @@
+add_mlir_conversion_library(MLIRMemRefToEmitC
+ MemRefToEmitC.cpp
+ MemRefToEmitCPass.cpp
+
+ ADDITIONAL_HEADER_DIRS
+ ${MLIR_MAIN_INCLUDE_DIR}/mlir/Conversion/MemRefToEmitC
+
+ DEPENDS
+ MLIRConversionPassIncGen
+
+ LINK_COMPONENTS
+ Core
+
+ LINK_LIBS PUBLIC
+ MLIREmitCDialect
+ MLIRFuncDialect
+ MLIRFuncTransforms
----------------
marbre wrote:
```suggestion
```
I think with your latest change these are no longer needed.
https://github.com/llvm/llvm-project/pull/85389
More information about the Mlir-commits
mailing list