forked from OSchip/llvm-project
[bazel] Port g95b4e88b1db3
This commit is contained in:
parent
cbe9911845
commit
20517719a9
|
@ -8393,6 +8393,26 @@ cc_library(
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
cc_library(
|
||||||
|
name = "PDLLCodeGen",
|
||||||
|
srcs = glob(
|
||||||
|
[
|
||||||
|
"lib/Tools/PDLL/CodeGen/*.cpp",
|
||||||
|
"lib/Tools/PDLL/CodeGen/*.h",
|
||||||
|
],
|
||||||
|
),
|
||||||
|
hdrs = glob(["include/mlir/Tools/PDLL/CodeGen/*.h"]),
|
||||||
|
includes = ["include"],
|
||||||
|
deps = [
|
||||||
|
":IR",
|
||||||
|
":PDLDialect",
|
||||||
|
":PDLLAST",
|
||||||
|
":Parser",
|
||||||
|
":Support",
|
||||||
|
"//llvm:Support",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "PDLLParser",
|
name = "PDLLParser",
|
||||||
srcs = glob(
|
srcs = glob(
|
||||||
|
@ -8417,7 +8437,9 @@ cc_binary(
|
||||||
"tools/mlir-pdll/mlir-pdll.cpp",
|
"tools/mlir-pdll/mlir-pdll.cpp",
|
||||||
],
|
],
|
||||||
deps = [
|
deps = [
|
||||||
|
":IR",
|
||||||
":PDLLAST",
|
":PDLLAST",
|
||||||
|
":PDLLCodeGen",
|
||||||
":PDLLParser",
|
":PDLLParser",
|
||||||
":Support",
|
":Support",
|
||||||
"//llvm:Support",
|
"//llvm:Support",
|
||||||
|
|
Loading…
Reference in New Issue