diff options
| -rw-r--r-- | llvm/lib/Target/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | llvm/lib/Transforms/IPO/CMakeLists.txt | 7 | ||||
| -rw-r--r-- | llvm/lib/Transforms/Utils/CMakeLists.txt | 4 | 
3 files changed, 7 insertions, 5 deletions
diff --git a/llvm/lib/Target/CMakeLists.txt b/llvm/lib/Target/CMakeLists.txt index 9ca86139a32..459744116dc 100644 --- a/llvm/lib/Target/CMakeLists.txt +++ b/llvm/lib/Target/CMakeLists.txt @@ -8,6 +8,7 @@ add_llvm_library(LLVMTarget    TargetELFWriterInfo.cpp    TargetFrameInfo.cpp    TargetInstrInfo.cpp +  TargetIntrinsicInfo.cpp    TargetMachOWriterInfo.cpp    TargetMachine.cpp    TargetRegisterInfo.cpp diff --git a/llvm/lib/Transforms/IPO/CMakeLists.txt b/llvm/lib/Transforms/IPO/CMakeLists.txt index 1438b4879d2..ec0f1e193ad 100644 --- a/llvm/lib/Transforms/IPO/CMakeLists.txt +++ b/llvm/lib/Transforms/IPO/CMakeLists.txt @@ -1,18 +1,19 @@  add_llvm_library(LLVMipo -  FunctionAttrs.cpp    ArgumentPromotion.cpp    ConstantMerge.cpp    DeadArgumentElimination.cpp    DeadTypeElimination.cpp    ExtractGV.cpp +  FunctionAttrs.cpp    GlobalDCE.cpp    GlobalOpt.cpp +  IPConstantPropagation.cpp +  IPO.cpp    IndMemRemoval.cpp    InlineAlways.cpp -  Inliner.cpp    InlineSimple.cpp +  Inliner.cpp    Internalize.cpp -  IPConstantPropagation.cpp    LoopExtractor.cpp    LowerSetJmp.cpp    MergeFunctions.cpp diff --git a/llvm/lib/Transforms/Utils/CMakeLists.txt b/llvm/lib/Transforms/Utils/CMakeLists.txt index 10cae5ca708..e11aca164ef 100644 --- a/llvm/lib/Transforms/Utils/CMakeLists.txt +++ b/llvm/lib/Transforms/Utils/CMakeLists.txt @@ -11,6 +11,7 @@ add_llvm_library(LLVMTransformUtils    DemoteRegToStack.cpp    InlineCost.cpp    InlineFunction.cpp +  InstructionNamer.cpp    LCSSA.cpp    Local.cpp    LoopSimplify.cpp @@ -19,12 +20,11 @@ add_llvm_library(LLVMTransformUtils    LowerSwitch.cpp    Mem2Reg.cpp    PromoteMemoryToRegister.cpp -  SimplifyCFG.cpp    SSI.cpp +  SimplifyCFG.cpp    UnifyFunctionExitNodes.cpp    UnrollLoop.cpp    ValueMapper.cpp -  InstructionNamer.cpp    )  target_link_libraries (LLVMTransformUtils LLVMSupport)  | 

