Skip to content

Commit ba0df98

Browse files
authored
Fix build for 0a34309 (#148314)
1 parent 93d9469 commit ba0df98

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

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

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4015,6 +4015,7 @@ cc_library(
40154015
":VectorToSCF",
40164016
":VectorToSPIRV",
40174017
":VectorToXeGPU",
4018+
":XeVMToLLVM",
40184019
],
40194020
)
40204021

@@ -13644,3 +13645,28 @@ gentbl_cc_library(
1364413645
td_file = "include/mlir/Dialect/LLVMIR/XeVMOps.td",
1364513646
deps = [":XeVMTdFiles"],
1364613647
)
13648+
13649+
cc_library(
13650+
name = "XeVMToLLVM",
13651+
srcs = glob([
13652+
"lib/Conversion/XeVMToLLVM/*.cpp",
13653+
]),
13654+
hdrs = glob([
13655+
"include/mlir/Conversion/XeVMToLLVM/*.h",
13656+
]),
13657+
includes = ["include"],
13658+
deps = [
13659+
":XeVMDialect",
13660+
":ConversionPassIncGen",
13661+
":ConvertToLLVMInterface",
13662+
":GPUDialect",
13663+
":IR",
13664+
":LLVMCommonConversion",
13665+
":LLVMDialect",
13666+
":Pass",
13667+
":Support",
13668+
":TransformUtils",
13669+
":VectorDialect",
13670+
"//llvm:Support",
13671+
],
13672+
)

0 commit comments

Comments
 (0)