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