Update CMake files.
[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   GEPSplitter.cpp
11   GVN.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   Reassociate.cpp
24   Reg2Mem.cpp
25   SCCP.cpp
26   Scalar.cpp
27   ScalarReplAggregates.cpp
28   SimplifyCFGPass.cpp
29   SimplifyHalfPowrLibCalls.cpp
30   SimplifyLibCalls.cpp
31   TailDuplication.cpp
32   TailRecursionElimination.cpp
33   )
34
35 target_link_libraries (LLVMScalarOpts LLVMTransformUtils)