Remove GVNPRE.cpp from the CMake makefile
[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   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   SimplifyHalfPowrLibCalls.cpp
30   SimplifyLibCalls.cpp
31   TailDuplication.cpp
32   TailRecursionElimination.cpp
33   )
34
35 target_link_libraries (LLVMScalarOpts LLVMTransformUtils)