[bazel] Port #150696: XeVM to LLVMIR (#151207)

This commit is contained in:
Jordan Rupprecht 2025-07-29 13:25:14 -05:00 committed by GitHub
parent 13366759c3
commit 052b836d23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8664,6 +8664,23 @@ cc_library(
],
)
cc_library(
name = "XeVMToLLVMIRTranslation",
srcs = glob(["lib/Target/LLVMIR/Dialect/XeVM/*.cpp"]),
hdrs = glob(["include/mlir/Target/LLVMIR/Dialect/XeVM/*.h"]),
includes = ["include"],
deps = [
":DialectUtils",
":IR",
":LLVMDialect",
":Support",
":ToLLVMIRTranslation",
":XeVMDialect",
"//llvm:Core",
"//llvm:Support",
],
)
cc_library(
name = "AllToLLVMIRTranslations",
hdrs = ["include/mlir/Target/LLVMIR/Dialect/All.h"],
@ -8683,6 +8700,7 @@ cc_library(
":ROCDLToLLVMIRTranslation",
":SPIRVToLLVMIRTranslation",
":VCIXToLLVMIRTranslation",
":XeVMToLLVMIRTranslation",
],
)