diff options
| author | Ted Kremenek <kremenek@apple.com> | 2009-07-15 21:08:41 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2009-07-15 21:08:41 +0000 |
| commit | 3e808edac9e5a795ba561046e63d241ab09dffaf (patch) | |
| tree | fadd7f44593be31e3c62a1e33caac0756d4f2f6c | |
| parent | 39816d9157fa09b7a3519435c1ce4ad93ec42215 (diff) | |
| download | bcm5719-llvm-3e808edac9e5a795ba561046e63d241ab09dffaf.tar.gz bcm5719-llvm-3e808edac9e5a795ba561046e63d241ab09dffaf.zip | |
Lexically order files in CMakeLists.txt files.
llvm-svn: 75832
| -rw-r--r-- | clang/lib/AST/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | clang/lib/Analysis/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | clang/lib/CodeGen/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | clang/lib/Frontend/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | clang/lib/Lex/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | clang/lib/Rewrite/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | clang/lib/Sema/CMakeLists.txt | 4 |
7 files changed, 13 insertions, 13 deletions
diff --git a/clang/lib/AST/CMakeLists.txt b/clang/lib/AST/CMakeLists.txt index ac4cbb2d296..dcc2ffc2039 100644 --- a/clang/lib/AST/CMakeLists.txt +++ b/clang/lib/AST/CMakeLists.txt @@ -5,17 +5,17 @@ add_clang_library(clangAST ASTConsumer.cpp ASTContext.cpp CFG.cpp - DeclarationName.cpp - DeclBase.cpp Decl.cpp + DeclBase.cpp DeclCXX.cpp DeclGroup.cpp DeclObjC.cpp DeclPrinter.cpp DeclTemplate.cpp - ExprConstant.cpp + DeclarationName.cpp Expr.cpp ExprCXX.cpp + ExprConstant.cpp InheritViz.cpp NestedNameSpecifier.cpp ParentMap.cpp diff --git a/clang/lib/Analysis/CMakeLists.txt b/clang/lib/Analysis/CMakeLists.txt index 7d6a619736e..8f5c648be41 100644 --- a/clang/lib/Analysis/CMakeLists.txt +++ b/clang/lib/Analysis/CMakeLists.txt @@ -24,10 +24,10 @@ add_clang_library(clangAnalysis PathDiagnostic.cpp RangeConstraintManager.cpp RegionStore.cpp + SVals.cpp SimpleConstraintManager.cpp SimpleSValuator.cpp Store.cpp - SVals.cpp SymbolManager.cpp UninitializedValues.cpp ValueManager.cpp diff --git a/clang/lib/CodeGen/CMakeLists.txt b/clang/lib/CodeGen/CMakeLists.txt index c206a3bdd20..26fd6448c62 100644 --- a/clang/lib/CodeGen/CMakeLists.txt +++ b/clang/lib/CodeGen/CMakeLists.txt @@ -1,17 +1,17 @@ set(LLVM_NO_RTTI 1) add_clang_library(clangCodeGen - CGBuiltin.cpp CGBlocks.cpp - CGCall.cpp + CGBuiltin.cpp CGCXX.cpp CGCXXTemp.cpp + CGCall.cpp CGDebugInfo.cpp CGDecl.cpp + CGExpr.cpp CGExprAgg.cpp CGExprComplex.cpp CGExprConstant.cpp - CGExpr.cpp CGExprScalar.cpp CGObjC.cpp CGObjCGNU.cpp diff --git a/clang/lib/Frontend/CMakeLists.txt b/clang/lib/Frontend/CMakeLists.txt index 5e94e656172..9574ebafd3e 100644 --- a/clang/lib/Frontend/CMakeLists.txt +++ b/clang/lib/Frontend/CMakeLists.txt @@ -1,9 +1,9 @@ set(LLVM_NO_RTTI 1) add_clang_library(clangFrontend - AnalysisConsumer.cpp ASTConsumers.cpp ASTUnit.cpp + AnalysisConsumer.cpp Backend.cpp CacheTokens.cpp DeclXML.cpp diff --git a/clang/lib/Lex/CMakeLists.txt b/clang/lib/Lex/CMakeLists.txt index a7237a7b76f..81a1e01f964 100644 --- a/clang/lib/Lex/CMakeLists.txt +++ b/clang/lib/Lex/CMakeLists.txt @@ -14,13 +14,13 @@ add_clang_library(clangLex PPExpressions.cpp PPLexerChange.cpp PPMacroExpansion.cpp + PTHLexer.cpp Pragma.cpp Preprocessor.cpp PreprocessorLexer.cpp - PTHLexer.cpp ScratchBuffer.cpp - TokenLexer.cpp TokenConcatenation.cpp + TokenLexer.cpp ) add_dependencies(clangLex ClangDiagnosticLex) diff --git a/clang/lib/Rewrite/CMakeLists.txt b/clang/lib/Rewrite/CMakeLists.txt index 52670b82a29..ce9e1ed424d 100644 --- a/clang/lib/Rewrite/CMakeLists.txt +++ b/clang/lib/Rewrite/CMakeLists.txt @@ -3,7 +3,7 @@ set(LLVM_NO_RTTI 1) add_clang_library(clangRewrite DeltaTree.cpp HTMLRewrite.cpp - Rewriter.cpp RewriteRope.cpp + Rewriter.cpp TokenRewriter.cpp ) diff --git a/clang/lib/Sema/CMakeLists.txt b/clang/lib/Sema/CMakeLists.txt index 85c67df8f1d..119bf58499e 100644 --- a/clang/lib/Sema/CMakeLists.txt +++ b/clang/lib/Sema/CMakeLists.txt @@ -7,10 +7,10 @@ add_clang_library(clangSema Sema.cpp SemaAccess.cpp SemaAttr.cpp - SemaChecking.cpp SemaCXXScopeSpec.cpp - SemaDeclAttr.cpp + SemaChecking.cpp SemaDecl.cpp + SemaDeclAttr.cpp SemaDeclCXX.cpp SemaDeclObjC.cpp SemaExpr.cpp |

