[llvm-branch-commits] [mlir] [mlir][func] Remove `func-bufferize` pass (PR #114152)

Javed Absar via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Wed Oct 30 15:53:38 PDT 2024


================
@@ -111,9 +111,9 @@ module attributes {transform.with_named_sequence} {
   transform.named_sequence @__transform_main(%arg1: !transform.any_op) {
     %1 = transform.structured.match ops{["func.func"]} in %arg1 : (!transform.any_op) -> !transform.any_op
 
-    // func-bufferize can be applied only to ModuleOps.
+    // duplicate-function-elimination can be applied only to ModuleOps.
     // expected-error @below {{pass pipeline failed}}
-    transform.apply_registered_pass "func-bufferize" to %1 : (!transform.any_op) -> !transform.any_op
+    transform.apply_registered_pass "duplicate-function-elimination" to %1 : (!transform.any_op) -> !transform.any_op
----------------
javedabsar1 wrote:

AFAIU here 'func-bufferize' just happened to be used. It is not really playing any specific role. right? 

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


More information about the llvm-branch-commits mailing list