Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / lib / Transforms / Scalar / CMakeLists.txt
blob9c33971ce0f2f723397f0b153465f3b2b70c0e69
1 add_llvm_library(LLVMScalarOpts
2   ADCE.cpp
3   AlignmentFromAssumptions.cpp
4   BDCE.cpp
5   CallSiteSplitting.cpp
6   ConstantHoisting.cpp
7   ConstantProp.cpp
8   CorrelatedValuePropagation.cpp
9   DCE.cpp
10   DeadStoreElimination.cpp
11   DivRemPairs.cpp
12   EarlyCSE.cpp
13   FlattenCFGPass.cpp
14   Float2Int.cpp
15   GuardWidening.cpp
16   GVN.cpp
17   GVNHoist.cpp
18   GVNSink.cpp
19   IVUsersPrinter.cpp
20   InductiveRangeCheckElimination.cpp
21   IndVarSimplify.cpp
22   InferAddressSpaces.cpp
23   InstSimplifyPass.cpp
24   JumpThreading.cpp
25   LICM.cpp
26   LoopAccessAnalysisPrinter.cpp
27   LoopSink.cpp
28   LoopDeletion.cpp
29   LoopDataPrefetch.cpp
30   LoopDistribute.cpp
31   LoopIdiomRecognize.cpp
32   LoopInstSimplify.cpp
33   LoopInterchange.cpp
34   LoopLoadElimination.cpp
35   LoopPassManager.cpp
36   LoopPredication.cpp
37   LoopRerollPass.cpp
38   LoopRotation.cpp
39   LoopSimplifyCFG.cpp
40   LoopStrengthReduce.cpp
41   LoopUnrollPass.cpp
42   LoopUnrollAndJamPass.cpp
43   LoopUnswitch.cpp
44   LoopVersioningLICM.cpp
45   LowerAtomic.cpp
46   LowerExpectIntrinsic.cpp
47   LowerGuardIntrinsic.cpp
48   LowerWidenableCondition.cpp
49   MakeGuardsExplicit.cpp
50   MemCpyOptimizer.cpp
51   MergeICmps.cpp
52   MergedLoadStoreMotion.cpp
53   NaryReassociate.cpp
54   NewGVN.cpp
55   PartiallyInlineLibCalls.cpp
56   PlaceSafepoints.cpp
57   Reassociate.cpp
58   Reg2Mem.cpp
59   RewriteStatepointsForGC.cpp
60   SCCP.cpp
61   SROA.cpp
62   Scalar.cpp
63   Scalarizer.cpp
64   SeparateConstOffsetFromGEP.cpp
65   SimpleLoopUnswitch.cpp
66   SimplifyCFGPass.cpp
67   Sink.cpp
68   SpeculativeExecution.cpp
69   SpeculateAroundPHIs.cpp
70   StraightLineStrengthReduce.cpp
71   StructurizeCFG.cpp
72   TailRecursionElimination.cpp
73   WarnMissedTransforms.cpp
75   ADDITIONAL_HEADER_DIRS
76   ${LLVM_MAIN_INCLUDE_DIR}/llvm/Transforms
77   ${LLVM_MAIN_INCLUDE_DIR}/llvm/Transforms/Scalar
79   DEPENDS
80   intrinsics_gen
81   )