Update CMake file.
[oota-llvm.git] / lib / Transforms / Scalar / CMakeLists.txt
1 add_llvm_library(LLVMScalarOpts
2   ADCE.cpp
3   BasicBlockPlacement.cpp
4   CodeGenLICM.cpp
5   CodeGenPrepare.cpp
6   CondPropagate.cpp
7   ConstantProp.cpp
8   DCE.cpp
9   DeadStoreElimination.cpp
10   GVN.cpp
11   IndVarSimplify.cpp
12   InstructionCombining.cpp
13   JumpThreading.cpp
14   LICM.cpp
15   LoopDeletion.cpp
16   LoopIndexSplit.cpp
17   LoopRotation.cpp
18   LoopStrengthReduce.cpp
19   LoopUnroll.cpp
20   LoopUnswitch.cpp
21   MemCpyOptimizer.cpp
22   Reassociate.cpp
23   Reg2Mem.cpp
24   SCCP.cpp
25   Scalar.cpp
26   ScalarReplAggregates.cpp
27   SimplifyCFGPass.cpp
28   SimplifyHalfPowrLibCalls.cpp
29   SimplifyLibCalls.cpp
30   TailDuplication.cpp
31   TailRecursionElimination.cpp
32   )
33
34 target_link_libraries (LLVMScalarOpts LLVMTransformUtils)