mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-01 08:28:19 +00:00
3bb0f9391c
ssa, so it has to be run really early in the pipeline. Any replacement should probably use the SSAUpdater. llvm-svn: 138841
43 lines
777 B
CMake
43 lines
777 B
CMake
add_llvm_library(LLVMScalarOpts
|
|
ADCE.cpp
|
|
BasicBlockPlacement.cpp
|
|
CodeGenPrepare.cpp
|
|
ConstantProp.cpp
|
|
CorrelatedValuePropagation.cpp
|
|
DCE.cpp
|
|
DeadStoreElimination.cpp
|
|
EarlyCSE.cpp
|
|
GVN.cpp
|
|
IndVarSimplify.cpp
|
|
JumpThreading.cpp
|
|
LICM.cpp
|
|
LoopDeletion.cpp
|
|
LoopIdiomRecognize.cpp
|
|
LoopInstSimplify.cpp
|
|
LoopRotation.cpp
|
|
LoopStrengthReduce.cpp
|
|
LoopUnrollPass.cpp
|
|
LoopUnswitch.cpp
|
|
LowerAtomic.cpp
|
|
MemCpyOptimizer.cpp
|
|
ObjCARC.cpp
|
|
Reassociate.cpp
|
|
Reg2Mem.cpp
|
|
SCCP.cpp
|
|
Scalar.cpp
|
|
ScalarReplAggregates.cpp
|
|
SimplifyCFGPass.cpp
|
|
SimplifyLibCalls.cpp
|
|
Sink.cpp
|
|
TailRecursionElimination.cpp
|
|
)
|
|
|
|
add_llvm_library_dependencies(LLVMScalarOpts
|
|
LLVMAnalysis
|
|
LLVMCore
|
|
LLVMInstCombine
|
|
LLVMSupport
|
|
LLVMTarget
|
|
LLVMTransformUtils
|
|
)
|