File tree Expand file tree Collapse file tree 4 files changed +17
-0
lines changed
llvm/utils/gn/secondary/clang Expand file tree Collapse file tree 4 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,16 @@ clang_tablegen("arm_mve_builtin_aliases") {
119
119
td_file = " arm_mve.td"
120
120
}
121
121
122
+ clang_tablegen (" arm_sve_builtins" ) {
123
+ args = [ " -gen-arm-sve-builtins" ]
124
+ td_file = " arm_sve.td"
125
+ }
126
+
127
+ clang_tablegen (" arm_sve_codegenmap" ) {
128
+ args = [ " -gen-arm-sve-codegenmap" ]
129
+ td_file = " arm_sve.td"
130
+ }
131
+
122
132
clang_tablegen (" arm_cde_builtins" ) {
123
133
args = [ " -gen-arm-cde-builtin-def" ]
124
134
td_file = " arm_cde.td"
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ static_library("Basic") {
26
26
" //clang/include/clang/Basic:DiagnosticGroups" ,
27
27
" //clang/include/clang/Basic:arm_cde_builtins" ,
28
28
" //clang/include/clang/Basic:arm_mve_builtins" ,
29
+ " //clang/include/clang/Basic:arm_sve_builtins" ,
29
30
" //clang/include/clang/Basic:diags_tablegen" ,
30
31
" //clang/include/clang/Basic:version" ,
31
32
]
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ static_library("CodeGen") {
4
4
deps = [
5
5
" //clang/include/clang/Basic:arm_cde_builtin_cg" ,
6
6
" //clang/include/clang/Basic:arm_mve_builtin_cg" ,
7
+ " //clang/include/clang/Basic:arm_sve_codegenmap" ,
7
8
" //clang/lib/AST" ,
8
9
" //clang/lib/Analysis" ,
9
10
" //clang/lib/Basic" ,
Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ executable("clang-tblgen") {
3
3
" //llvm/lib/Support" ,
4
4
" //llvm/lib/TableGen" ,
5
5
]
6
+
7
+ # FIXME: This is incorrect, see https://reviews.llvm.org/D75470#inline-695187
8
+ # Remoe again once that's rectified.
9
+ include_dirs = [ " //clang/include" ]
10
+
6
11
sources = [
7
12
" ASTTableGen.cpp" ,
8
13
" ClangASTNodesEmitter.cpp" ,
You can’t perform that action at this time.
0 commit comments