Delete a bogus check.
[oota-llvm.git] / lib / Transforms / Scalar / CMakeLists.txt
1 add_llvm_library(LLVMScalarOpts
2   ADCE.cpp
3   BasicBlockPlacement.cpp
4   CodeGenPrepare.cpp
5   ConstantProp.cpp
6   DCE.cpp
7   DeadStoreElimination.cpp
8   GEPSplitter.cpp
9   GVN.cpp
10   IndVarSimplify.cpp
11   JumpThreading.cpp
12   LICM.cpp
13   LoopDeletion.cpp
14   LoopIndexSplit.cpp
15   LoopRotation.cpp
16   LoopStrengthReduce.cpp
17   LoopUnrollPass.cpp
18   LoopUnswitch.cpp
19   LowerAtomic.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   Sink.cpp
30   TailDuplication.cpp
31   TailRecursionElimination.cpp
32   ValuePropagation.cpp
33   )
34
35 target_link_libraries (LLVMScalarOpts LLVMTransformUtils)