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