[PATCH] D105356: [Bazel] Fix build for c0a6318d96
Geoffrey Martin-Noble via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 2 09:17:23 PDT 2021
GMNGeoffrey created this revision.
Herald added subscribers: dcaballe, cota, teijeong, rdzhabarov, tatianashp, msifontes, jurahul, Kayjukh, grosul1, Joonsoo, liufengdb, aartbik, lucyrfox, mgester, arpith-jacob, antiagainst, shauheen, rriddle, mehdi_amini.
GMNGeoffrey requested review of this revision.
Herald added subscribers: llvm-commits, stephenneuendorffer, nicolasvasilache.
Herald added a project: LLVM.
This adds explicit deps to satisfy layering_check
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D105356
Files:
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel
Index: utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel
@@ -227,7 +227,6 @@
"//mlir:Dialect",
"//mlir:IR",
"//mlir:InferTypeOpInterface",
- "//mlir:MemRefDialect",
"//mlir:Pass",
"//mlir:Reducer",
"//mlir:SideEffects",
Index: utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -2302,6 +2302,7 @@
":StandardOps",
":StandardOpsTransformsPassIncGen",
":Support",
+ ":TensorDialect",
":Transforms",
"//llvm:Support",
],
@@ -6181,6 +6182,7 @@
]),
includes = ["include"],
deps = [
+ ":Analysis",
":Dialect",
":IR",
":InferTypeOpInterface",
@@ -6215,7 +6217,6 @@
":IR",
":LinalgOps",
":MathDialect",
- ":MemRefDialect",
":Pass",
":StandardOps",
":TensorDialect",
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D105356.356187.patch
Type: text/x-patch
Size: 1254 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210702/c08a3332/attachment.bin>
More information about the llvm-commits
mailing list