Skip to content

Commit 93c7a9b

Browse files
committed
[bazel] Port 589764a
1 parent b6cf94e commit 93c7a9b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

utils/bazel/llvm-project-overlay/mlir/BUILD.bazel

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5923,13 +5923,25 @@ cc_library(
59235923
],
59245924
)
59255925

5926+
cc_library(
5927+
name = "ArithAttrToLLVMConversion",
5928+
srcs = glob(["lib/Conversion/ArithCommon/*.cpp"]),
5929+
hdrs = glob(["include/mlir/Conversion/ArithCommon/*.h"]),
5930+
includes = ["include"],
5931+
deps = [
5932+
":ArithDialect",
5933+
":LLVMDialect",
5934+
],
5935+
)
5936+
59265937
cc_library(
59275938
name = "ArithToLLVM",
59285939
srcs = glob(["lib/Conversion/ArithToLLVM/*.cpp"]),
59295940
hdrs = glob(["include/mlir/Conversion/ArithToLLVM/*.h"]),
59305941
includes = ["include"],
59315942
deps = [
59325943
":Analysis",
5944+
":ArithAttrToLLVMConversion",
59335945
":ArithDialect",
59345946
":ConversionPassIncGen",
59355947
":IR",
@@ -5968,6 +5980,7 @@ cc_library(
59685980
includes = ["include"],
59695981
deps = [
59705982
":Analysis",
5983+
":ArithAttrToLLVMConversion",
59715984
":ConversionPassIncGen",
59725985
":DataLayoutInterfaces",
59735986
":IR",
@@ -9277,6 +9290,7 @@ td_library(
92779290
],
92789291
includes = ["include"],
92799292
deps = [
9293+
":ArithOpsTdFiles",
92809294
":InferTypeOpInterfaceTdFiles",
92819295
":OpBaseTdFiles",
92829296
":SideEffectInterfacesTdFiles",

0 commit comments

Comments
 (0)