From 399b8ee7edf1b108adf7cddead7bf1ab284cf190 Mon Sep 17 00:00:00 2001 From: Frederik Gossen Date: Thu, 19 Jan 2023 14:25:55 -0500 Subject: [PATCH] [MLIR] Update bazel build file after 455305624884cf9237143e2ba0635fcc5ba5206 --- utils/bazel/llvm-project-overlay/mlir/BUILD.bazel | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel index 0258832..e3906e7 100644 --- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel @@ -2975,6 +2975,20 @@ cc_library( ) cc_library( + name = "InferIntRangeCommon", + srcs = [ + "lib/Interfaces/Utils/InferIntRangeCommon.cpp", + ], + hdrs = ["include/mlir/Interfaces/Utils/InferIntRangeCommon.h"], + includes = ["include"], + deps = [ + ":IR", + ":InferIntRangeInterface", + "//third_party/llvm/llvm-project/llvm:Support", + ], +) + +cc_library( name = "DataLayoutInterfaces", srcs = ["lib/Interfaces/DataLayoutInterfaces.cpp"], hdrs = ["include/mlir/Interfaces/DataLayoutInterfaces.h"], @@ -7875,6 +7889,7 @@ td_library( includes = ["include"], deps = [ ":CastInterfacesTdFiles", + ":InferIntRangeInterfaceTdFiles", ":InferTypeOpInterfaceTdFiles", ":OpBaseTdFiles", ":SideEffectInterfacesTdFiles", @@ -7987,6 +8002,8 @@ cc_library( ":IR", ":IndexEnumsIncGen", ":IndexOpsIncGen", + ":InferIntRangeCommon", + ":InferIntRangeInterface", ":InferTypeOpInterface", "//llvm:Support", ], @@ -9584,6 +9601,7 @@ cc_library( ":ArithOpsInterfacesIncGen", ":CommonFolders", ":IR", + ":InferIntRangeCommon", ":InferIntRangeInterface", ":InferTypeOpInterface", ":SideEffectInterfaces", -- 2.7.4