File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed
llvm/utils/gn/secondary/clang/lib Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,6 @@ static_library("Analysis") {
27
27
" FixitUtil.cpp" ,
28
28
" IntervalPartition.cpp" ,
29
29
" IssueHash.cpp" ,
30
- " LifetimeAnnotations.cpp" ,
31
- " LifetimeSafety.cpp" ,
32
30
" LiveVariables.cpp" ,
33
31
" MacroExpansionContext.cpp" ,
34
32
" ObjCNoReturn.cpp" ,
Original file line number Diff line number Diff line change
1
+ static_library (" LifetimeSafety" ) {
2
+ output_name = " clangAnalysisLifetimeSafety"
3
+ configs += [ " //llvm/utils/gn/build:clang_code" ]
4
+ deps = [ " //clang/lib/Basic" ]
5
+ sources = [
6
+ " Checker.cpp" ,
7
+ " Facts.cpp" ,
8
+ " FactsGenerator.cpp" ,
9
+ " LifetimeAnnotations.cpp" ,
10
+ " LifetimeSafety.cpp" ,
11
+ " LiveOrigins.cpp" ,
12
+ " Loans.cpp" ,
13
+ " LoanPropagation.cpp" ,
14
+ " Origins.cpp" ,
15
+ ]
16
+ }
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ static_library("Sema") {
29
29
" //clang/lib/APINotes" ,
30
30
" //clang/lib/AST" ,
31
31
" //clang/lib/Analysis" ,
32
+ " //clang/lib/Analysis/LifetimeSafety" ,
32
33
" //clang/lib/Basic" ,
33
34
" //clang/lib/Edit" ,
34
35
" //clang/lib/Lex" ,
You can’t perform that action at this time.
0 commit comments