Initial support for the CMake build system.
[oota-llvm.git] / lib / Transforms / Scalar / CMakeLists.txt
1 add_llvm_library(LLVMScalarOpts
2   ADCE.cpp
3   BasicBlockPlacement.cpp
4   CodeGenPrepare.cpp
5   CondPropagate.cpp
6   ConstantProp.cpp
7   DCE.cpp
8   DeadStoreElimination.cpp
9   GVN.cpp
10   GVNPRE.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   PredicateSimplifier.cpp
23   Reassociate.cpp
24   Reg2Mem.cpp
25   SCCP.cpp
26   Scalar.cpp
27   ScalarReplAggregates.cpp
28   SimplifyCFGPass.cpp
29   SimplifyLibCalls.cpp
30   TailDuplication.cpp
31   TailRecursionElimination.cpp
32   )