mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
ff64e0fb16
The commit "Adding IPSCCP and Internalize passes to the C-bindings" introduced new dependencies for IPO. Add these to the CMAKE build as otherwise the BUILD_SHARED_LIBS=1 build fails. llvm-svn: 101313
28 lines
562 B
CMake
28 lines
562 B
CMake
add_llvm_library(LLVMipo
|
|
ArgumentPromotion.cpp
|
|
ConstantMerge.cpp
|
|
DeadArgumentElimination.cpp
|
|
DeadTypeElimination.cpp
|
|
ExtractGV.cpp
|
|
FunctionAttrs.cpp
|
|
GlobalDCE.cpp
|
|
GlobalOpt.cpp
|
|
IPConstantPropagation.cpp
|
|
IPO.cpp
|
|
InlineAlways.cpp
|
|
InlineSimple.cpp
|
|
Inliner.cpp
|
|
Internalize.cpp
|
|
LoopExtractor.cpp
|
|
LowerSetJmp.cpp
|
|
MergeFunctions.cpp
|
|
PartialInlining.cpp
|
|
PartialSpecialization.cpp
|
|
PruneEH.cpp
|
|
StripDeadPrototypes.cpp
|
|
StripSymbols.cpp
|
|
StructRetPromotion.cpp
|
|
)
|
|
|
|
target_link_libraries (LLVMipo LLVMScalarOpts LLVMInstCombine)
|