Skip to content

Commit ae4a3b9

Browse files
committed
adds missing header, removes Bazel unnecessary dependency
1 parent e379b4b commit ae4a3b9

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

mlir/include/mlir/Dialect/Affine/IR/ValueBoundsOpInterfaceImpl.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#ifndef MLIR_DIALECT_AFFINE_IR_VALUEBOUNDSOPINTERFACEIMPL_H
1010
#define MLIR_DIALECT_AFFINE_IR_VALUEBOUNDSOPINTERFACEIMPL_H
1111

12+
#include <cstdint>
1213
#include "mlir/Support/LLVM.h"
1314

1415
namespace mlir {

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

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3749,10 +3749,10 @@ cc_library(
37493749
":BytecodeOpInterface",
37503750
":DialectUtils",
37513751
":IR",
3752+
":MaskableOpInterface",
37523753
":ShapedOpInterfaces",
37533754
":SideEffectInterfaces",
37543755
":VectorDialect",
3755-
":VectorOpsIncGen",
37563756
":ViewLikeInterface",
37573757
":XeGPUEnumsIncGen",
37583758
":XeGPUIncGen",
@@ -11719,6 +11719,25 @@ gentbl_cc_library(
1171911719
],
1172011720
)
1172111721

11722+
cc_library(
11723+
name = "VectorOps",
11724+
hdrs = [
11725+
"include/mlir/Dialect/Vector/IR/VectorAttributes.h.inc",
11726+
"include/mlir/Dialect/Vector/IR/VectorDialect.h.inc",
11727+
"include/mlir/Dialect/Vector/IR/VectorEnums.h.inc",
11728+
"include/mlir/Dialect/Vector/IR/VectorOps.h",
11729+
],
11730+
includes = ["include"],
11731+
deps = [
11732+
":ArithDialect",
11733+
":BytecodeOpInterface",
11734+
":MaskableOpInterface",
11735+
":VectorAttributesIncGen",
11736+
":VectorDialectIncGen",
11737+
":VectorOpsIncGen",
11738+
],
11739+
)
11740+
1172211741
gentbl_cc_library(
1172311742
name = "VectorAttributesIncGen",
1172411743
tbl_outs = [

0 commit comments

Comments
 (0)