Skip to content

Commit 052b836

Browse files
authored
[bazel] Port #150696: XeVM to LLVMIR (#151207)
1 parent 1336675 commit 052b836

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8664,6 +8664,23 @@ cc_library(
86648664
],
86658665
)
86668666

8667+
cc_library(
8668+
name = "XeVMToLLVMIRTranslation",
8669+
srcs = glob(["lib/Target/LLVMIR/Dialect/XeVM/*.cpp"]),
8670+
hdrs = glob(["include/mlir/Target/LLVMIR/Dialect/XeVM/*.h"]),
8671+
includes = ["include"],
8672+
deps = [
8673+
":DialectUtils",
8674+
":IR",
8675+
":LLVMDialect",
8676+
":Support",
8677+
":ToLLVMIRTranslation",
8678+
":XeVMDialect",
8679+
"//llvm:Core",
8680+
"//llvm:Support",
8681+
],
8682+
)
8683+
86678684
cc_library(
86688685
name = "AllToLLVMIRTranslations",
86698686
hdrs = ["include/mlir/Target/LLVMIR/Dialect/All.h"],
@@ -8683,6 +8700,7 @@ cc_library(
86838700
":ROCDLToLLVMIRTranslation",
86848701
":SPIRVToLLVMIRTranslation",
86858702
":VCIXToLLVMIRTranslation",
8703+
":XeVMToLLVMIRTranslation",
86868704
],
86878705
)
86888706

0 commit comments

Comments
 (0)