From 193562982930fb7c094dbe2c8b10fd18a1fac1d6 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Wed, 15 Jul 2009 21:08:16 +0000 Subject: [PATCH] Lexically order files in CMakeLists.txt files. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75831 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/CMakeLists.txt | 4 ++-- lib/CodeGen/SelectionDAG/CMakeLists.txt | 6 +++--- lib/System/CMakeLists.txt | 2 +- lib/Target/CellSPU/AsmPrinter/CMakeLists.txt | 2 +- lib/Target/IA64/AsmPrinter/CMakeLists.txt | 2 +- lib/Target/Mips/AsmPrinter/CMakeLists.txt | 2 +- lib/VMCore/CMakeLists.txt | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/Analysis/CMakeLists.txt b/lib/Analysis/CMakeLists.txt index 121ac63df12..e9ab9028b0b 100644 --- a/lib/Analysis/CMakeLists.txt +++ b/lib/Analysis/CMakeLists.txt @@ -6,15 +6,15 @@ add_llvm_library(LLVMAnalysis AliasSetTracker.cpp Analysis.cpp BasicAliasAnalysis.cpp - CaptureTracking.cpp CFGPrinter.cpp + CaptureTracking.cpp ConstantFolding.cpp DbgInfoPrinter.cpp DebugInfo.cpp + IVUsers.cpp InstCount.cpp Interval.cpp IntervalPartition.cpp - IVUsers.cpp LibCallAliasAnalysis.cpp LibCallSemantics.cpp LiveValues.cpp diff --git a/lib/CodeGen/SelectionDAG/CMakeLists.txt b/lib/CodeGen/SelectionDAG/CMakeLists.txt index 4ffe88fda5a..dfa91cfadb2 100644 --- a/lib/CodeGen/SelectionDAG/CMakeLists.txt +++ b/lib/CodeGen/SelectionDAG/CMakeLists.txt @@ -9,13 +9,13 @@ add_llvm_library(LLVMSelectionDAG LegalizeTypesGeneric.cpp LegalizeVectorOps.cpp LegalizeVectorTypes.cpp - ScheduleDAGSDNodes.cpp - ScheduleDAGSDNodesEmit.cpp ScheduleDAGFast.cpp ScheduleDAGList.cpp ScheduleDAGRRList.cpp - SelectionDAGBuild.cpp + ScheduleDAGSDNodes.cpp + ScheduleDAGSDNodesEmit.cpp SelectionDAG.cpp + SelectionDAGBuild.cpp SelectionDAGISel.cpp SelectionDAGPrinter.cpp TargetLowering.cpp diff --git a/lib/System/CMakeLists.txt b/lib/System/CMakeLists.txt index bf7a0c601e8..8315f422b3b 100644 --- a/lib/System/CMakeLists.txt +++ b/lib/System/CMakeLists.txt @@ -13,9 +13,9 @@ add_llvm_library(LLVMSystem Program.cpp RWMutex.cpp Signals.cpp + ThreadLocal.cpp Threading.cpp TimeValue.cpp - ThreadLocal.cpp ) if( BUILD_SHARED_LIBS AND NOT WIN32 ) diff --git a/lib/Target/CellSPU/AsmPrinter/CMakeLists.txt b/lib/Target/CellSPU/AsmPrinter/CMakeLists.txt index 9684e63a60d..1e508fe1890 100644 --- a/lib/Target/CellSPU/AsmPrinter/CMakeLists.txt +++ b/lib/Target/CellSPU/AsmPrinter/CMakeLists.txt @@ -4,6 +4,6 @@ include_directories( ) add_llvm_library(LLVMCellSPUAsmPrinter - SPUAsmPrinter.cpp + SPUAsmPrinter.cpp ) add_dependencies(LLVMCellSPUAsmPrinter CellSPUCodeGenTable_gen) \ No newline at end of file diff --git a/lib/Target/IA64/AsmPrinter/CMakeLists.txt b/lib/Target/IA64/AsmPrinter/CMakeLists.txt index ffe0eed03cb..cff386e0ec6 100644 --- a/lib/Target/IA64/AsmPrinter/CMakeLists.txt +++ b/lib/Target/IA64/AsmPrinter/CMakeLists.txt @@ -4,6 +4,6 @@ include_directories( ) add_llvm_library(LLVMIA64AsmPrinter - IA64AsmPrinter.cpp + IA64AsmPrinter.cpp ) add_dependencies(LLVMIA64AsmPrinter IA64CodeGenTable_gen) \ No newline at end of file diff --git a/lib/Target/Mips/AsmPrinter/CMakeLists.txt b/lib/Target/Mips/AsmPrinter/CMakeLists.txt index 197cc2921ed..56c68a6b416 100644 --- a/lib/Target/Mips/AsmPrinter/CMakeLists.txt +++ b/lib/Target/Mips/AsmPrinter/CMakeLists.txt @@ -4,6 +4,6 @@ include_directories( ) add_llvm_library(LLVMMipsAsmPrinter - MipsAsmPrinter.cpp + MipsAsmPrinter.cpp ) add_dependencies(LLVMMipsAsmPrinter MipsCodeGenTable_gen) \ No newline at end of file diff --git a/lib/VMCore/CMakeLists.txt b/lib/VMCore/CMakeLists.txt index c9cdce4789d..c0d5144a513 100644 --- a/lib/VMCore/CMakeLists.txt +++ b/lib/VMCore/CMakeLists.txt @@ -13,8 +13,8 @@ add_llvm_library(LLVMCore Instruction.cpp Instructions.cpp IntrinsicInst.cpp - LeakDetector.cpp LLVMContext.cpp + LeakDetector.cpp Mangler.cpp Module.cpp ModuleProvider.cpp -- 2.34.1