File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
utils/bazel/llvm-project-overlay/mlir Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -12902,6 +12902,14 @@ gentbl_cc_library(
12902
12902
["-gen-attrdef-defs" ],
12903
12903
"include/mlir/Dialect/Complex/IR/ComplexAttributes.cpp.inc" ,
12904
12904
),
12905
+ (
12906
+ ["-gen-enum-decls" ],
12907
+ "include/mlir/Dialect/Complex/IR/ComplexEnums.h.inc" ,
12908
+ ),
12909
+ (
12910
+ ["-gen-enum-defs" ],
12911
+ "include/mlir/Dialect/Complex/IR/ComplexEnums.cpp.inc" ,
12912
+ ),
12905
12913
],
12906
12914
tblgen = ":mlir-tblgen" ,
12907
12915
td_file = "include/mlir/Dialect/Complex/IR/ComplexAttributes.td" ,
@@ -12972,6 +12980,26 @@ cc_library(
12972
12980
],
12973
12981
)
12974
12982
12983
+ cc_library (
12984
+ name = "ComplexCommon" ,
12985
+ srcs = glob ([
12986
+ "lib/Conversion/ComplexCommon/*.cpp" ,
12987
+ ]),
12988
+ hdrs = glob ([
12989
+ "include/mlir/Conversion/ComplexCommon/*.h" ,
12990
+ ]),
12991
+ includes = ["include" ],
12992
+ deps = [
12993
+ ":ArithAttrToLLVMConversion" ,
12994
+ ":ArithDialect" ,
12995
+ ":ComplexDialect" ,
12996
+ ":LLVMCommonConversion" ,
12997
+ ":LLVMDialect" ,
12998
+ ":MathDialect" ,
12999
+ ":Pass" ,
13000
+ ],
13001
+ )
13002
+
12975
13003
cc_library (
12976
13004
name = "ComplexToLLVM" ,
12977
13005
srcs = glob ([
@@ -12984,6 +13012,7 @@ cc_library(
12984
13012
deps = [
12985
13013
":ArithAttrToLLVMConversion" ,
12986
13014
":ArithDialect" ,
13015
+ ":ComplexCommon" ,
12987
13016
":ComplexDialect" ,
12988
13017
":ConversionPassIncGen" ,
12989
13018
":ConvertToLLVMInterface" ,
@@ -13043,6 +13072,7 @@ cc_library(
13043
13072
includes = ["include" ],
13044
13073
deps = [
13045
13074
":ArithDialect" ,
13075
+ ":ComplexCommon" ,
13046
13076
":ComplexDialect" ,
13047
13077
":ConversionPassIncGen" ,
13048
13078
":IR" ,
You can’t perform that action at this time.
0 commit comments