Skip to content

Commit e358d24

Browse files
authored
[bazel][mlir] Port #156053: PtrToLLVM (#156074)
1 parent 81d6b20 commit e358d24

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

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

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6594,6 +6594,25 @@ cc_library(
65946594
],
65956595
)
65966596

6597+
cc_library(
6598+
name = "PtrToLLVM",
6599+
srcs = glob([
6600+
"lib/Conversion/PtrToLLVM/*.cpp",
6601+
]),
6602+
hdrs = glob([
6603+
"include/mlir/Conversion/PtrToLLVM/*.h",
6604+
]),
6605+
includes = ["include"],
6606+
deps = [
6607+
":ConversionPassIncGen",
6608+
":ConvertToLLVMInterface",
6609+
":IR",
6610+
":LLVMCommonConversion",
6611+
":LLVMDialect",
6612+
":PtrDialect",
6613+
],
6614+
)
6615+
65976616
td_library(
65986617
name = "SMTTdFiles",
65996618
srcs = [
@@ -9277,6 +9296,7 @@ cc_library(
92779296
":NVGPUTransformOps",
92789297
":NVVMToLLVM",
92799298
":OpenMPToLLVM",
9299+
":PtrToLLVM",
92809300
":ROCDLToLLVMIRTranslation",
92819301
":SCFToEmitC",
92829302
":SCFTransformOps",

0 commit comments

Comments
 (0)