File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
utils/bazel/llvm-project-overlay/mlir Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -3902,6 +3902,7 @@ cc_library(
3902
3902
":ControlFlowToSPIRV" ,
3903
3903
":ConversionPassIncGen" ,
3904
3904
":ConvertToLLVM" ,
3905
+ ":FuncToEmitC" ,
3905
3906
":FuncToLLVM" ,
3906
3907
":FuncToSPIRV" ,
3907
3908
":GPUToGPURuntimeTransforms" ,
@@ -6834,6 +6835,32 @@ cc_library(
6834
6835
],
6835
6836
)
6836
6837
6838
+ cc_library (
6839
+ name = "FuncToEmitC" ,
6840
+ srcs = glob ([
6841
+ "lib/Conversion/FuncToEmitC*.cpp" ,
6842
+ "lib/Conversion/FuncToEmitC/*.h" ,
6843
+ ]),
6844
+ hdrs = glob ([
6845
+ "include/mlir/Conversion/FuncToEmitC/*.h" ,
6846
+ ]),
6847
+ includes = [
6848
+ "include" ,
6849
+ "lib/Conversion/FuncToEmitC" ,
6850
+ ],
6851
+ deps = [
6852
+ ":ConversionPassIncGen" ,
6853
+ ":FuncDialect" ,
6854
+ ":EmitCDialect" ,
6855
+ ":IR" ,
6856
+ ":Pass" ,
6857
+ ":Support" ,
6858
+ ":TransformUtils" ,
6859
+ ":Transforms" ,
6860
+ "//llvm:Support" ,
6861
+ ],
6862
+ )
6863
+
6837
6864
cc_library (
6838
6865
name = "FuncToSPIRV" ,
6839
6866
srcs = glob ([
You can’t perform that action at this time.
0 commit comments