forked from OSchip/llvm-project
parent
4f9b1d0327
commit
d0014cf36d
|
@ -8,6 +8,7 @@ add_llvm_library(LLVMTarget
|
|||
TargetELFWriterInfo.cpp
|
||||
TargetFrameInfo.cpp
|
||||
TargetInstrInfo.cpp
|
||||
TargetIntrinsicInfo.cpp
|
||||
TargetMachOWriterInfo.cpp
|
||||
TargetMachine.cpp
|
||||
TargetRegisterInfo.cpp
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue