File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed
llvm/utils/gn/secondary/llvm
Transforms/Vectorize/SandboxVectorizer Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ static_library("Vectorize") {
13
13
" LoopVectorizationLegality.cpp" ,
14
14
" LoopVectorize.cpp" ,
15
15
" SLPVectorizer.cpp" ,
16
+ " SandboxVectorizer/DependencyGraph.cpp" ,
16
17
" SandboxVectorizer/Passes/BottomUpVec.cpp" ,
17
18
" SandboxVectorizer/SandboxVectorizer.cpp" ,
18
19
" VPlan.cpp" ,
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ group("unittests") {
59
59
" Transforms/Scalar:ScalarTests" ,
60
60
" Transforms/Utils:UtilsTests" ,
61
61
" Transforms/Vectorize:VectorizeTests" ,
62
+ " Transforms/Vectorize/SandboxVectorizer:SandboxVectorizerTests" ,
62
63
" XRay:XRayTests" ,
63
64
" tools/llvm-cfi-verify:CFIVerifyTests" ,
64
65
" tools/llvm-exegesis:LLVMExegesisTests" ,
Original file line number Diff line number Diff line change
1
+ import (" //third-party/unittest/unittest.gni" )
2
+
3
+ unittest (" SandboxVectorizerTests" ) {
4
+ deps = [
5
+ " //llvm/lib/Analysis" ,
6
+ " //llvm/lib/AsmParser" ,
7
+ " //llvm/lib/IR" ,
8
+ " //llvm/lib/SandboxIR" ,
9
+ " //llvm/lib/TargetParser" ,
10
+ " //llvm/lib/Transforms/Vectorize" ,
11
+ ]
12
+ sources = [ " DependencyGraphTest.cpp" ]
13
+ }
You can’t perform that action at this time.
0 commit comments