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") {
2727 " FixitUtil.cpp" ,
2828 " IntervalPartition.cpp" ,
2929 " IssueHash.cpp" ,
30- " LifetimeAnnotations.cpp" ,
31- " LifetimeSafety.cpp" ,
3230 " LiveVariables.cpp" ,
3331 " MacroExpansionContext.cpp" ,
3432 " 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") {
2929 " //clang/lib/APINotes" ,
3030 " //clang/lib/AST" ,
3131 " //clang/lib/Analysis" ,
32+ " //clang/lib/Analysis/LifetimeSafety" ,
3233 " //clang/lib/Basic" ,
3334 " //clang/lib/Edit" ,
3435 " //clang/lib/Lex" ,
You can’t perform that action at this time.
0 commit comments