Update CMake.
[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   GVNPRE.cpp
12   IndVarSimplify.cpp
13   InstructionCombining.cpp
14   JumpThreading.cpp
15   LICM.cpp
16   LoopDeletion.cpp
17   LoopIndexSplit.cpp
18   LoopRotation.cpp
19   LoopStrengthReduce.cpp
20   LoopUnroll.cpp
21   LoopUnswitch.cpp
22   MemCpyOptimizer.cpp
23   PredicateSimplifier.cpp
24   Reassociate.cpp
25   Reg2Mem.cpp
26   SCCP.cpp
27   Scalar.cpp
28   ScalarReplAggregates.cpp
29   SimplifyCFGPass.cpp
30   SimplifyHalfPowrLibCalls.cpp
31   SimplifyLibCalls.cpp
32   TailDuplication.cpp
33   TailRecursionElimination.cpp
34   )
35
36 target_link_libraries (LLVMScalarOpts LLVMTransformUtils)