We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebe388a commit fa3d7bbCopy full SHA for fa3d7bb
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -4483,6 +4483,24 @@ cc_library(
4483
],
4484
)
4485
4486
+cc_library(
4487
+ name = "FuncUtils",
4488
+ srcs = glob(
4489
+ include = ["lib/Dialect/Func/Utils/*.cpp"],
4490
+ ),
4491
+ hdrs = [
4492
+ "include/mlir/Dialect/Func/Utils/Utils.h",
4493
+ ],
4494
+ includes = ["include"],
4495
+ deps = [
4496
+ ":Analysis",
4497
+ ":IR",
4498
+ ":FuncDialect",
4499
+ "//llvm:Support",
4500
4501
+ copts = mlir_copts,
4502
+)
4503
+
4504
td_library(
4505
name = "FuncTransformOpsTdFiles",
4506
srcs = [
@@ -4528,6 +4546,7 @@ cc_library(
4528
4546
":TransformDialect",
4529
4547
":TransformDialectInterfaces",
4530
4548
":TransformUtils",
4549
+ ":FuncUtils",
4531
4550
4532
4551
4533
4552
0 commit comments