File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
llvm/utils/gn/secondary/llvm Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -63,12 +63,14 @@ static_library("LLVMX86CodeGen") {
63
63
" //llvm/lib/CodeGen/GlobalISel" ,
64
64
" //llvm/lib/CodeGen/SelectionDAG" ,
65
65
" //llvm/lib/IR" ,
66
+ " //llvm/lib/IRPrinter" ,
66
67
" //llvm/lib/MC" ,
67
68
" //llvm/lib/Support" ,
68
69
" //llvm/lib/Target" ,
69
70
" //llvm/lib/TargetParser" ,
70
71
" //llvm/lib/Transforms/CFGuard" ,
71
72
" //llvm/lib/Transforms/Instrumentation" ,
73
+ " //llvm/lib/Transforms/Scalar" ,
72
74
]
73
75
include_dirs = [ " ." ]
74
76
sources = [
@@ -83,6 +85,7 @@ static_library("LLVMX86CodeGen") {
83
85
" X86CallFrameOptimization.cpp" ,
84
86
" X86CallingConv.cpp" ,
85
87
" X86CmovConversion.cpp" ,
88
+ " X86CodeGenPassBuilder.cpp" ,
86
89
" X86CompressEVEX.cpp" ,
87
90
" X86DiscriminateMemOps.cpp" ,
88
91
" X86DomainReassignment.cpp" ,
Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ executable("llc") {
7
7
" //llvm/lib/CodeGen/SelectionDAG" ,
8
8
" //llvm/lib/IR" ,
9
9
" //llvm/lib/IRReader" ,
10
+ " //llvm/lib/IRPrinter" ,
10
11
" //llvm/lib/MC" ,
12
+ " //llvm/lib/Passes" ,
11
13
" //llvm/lib/Support" ,
12
14
" //llvm/lib/Target" ,
13
15
" //llvm/lib/Target:TargetsToBuild" ,
@@ -16,7 +18,10 @@ executable("llc") {
16
18
" //llvm/lib/Transforms/Utils" ,
17
19
" //llvm/lib/Transforms/Vectorize" ,
18
20
]
19
- sources = [ " llc.cpp" ]
21
+ sources = [
22
+ " NewPMDriver.cpp" ,
23
+ " llc.cpp" ,
24
+ ]
20
25
21
26
# Support plugins.
22
27
# FIXME: Disable dead stripping once other binaries are dead-stripped.
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ unittest("CodeGenTests") {
24
24
" AllocationOrderTest.cpp" ,
25
25
" AsmPrinterDwarfTest.cpp" ,
26
26
" CCStateTest.cpp" ,
27
- " CodeGenPassBuilderTest.cpp" ,
28
27
" DIEHashTest.cpp" ,
29
28
" DIETest.cpp" ,
30
29
" DwarfStringPoolEntryRefTest.cpp" ,
You can’t perform that action at this time.
0 commit comments