Remove the LowerSetJmp pass. It wasn't used effectively by any of the targets.
[oota-llvm.git] / lib / Transforms / IPO / CMakeLists.txt
1 add_llvm_library(LLVMipo
2   ArgumentPromotion.cpp
3   ConstantMerge.cpp
4   DeadArgumentElimination.cpp
5   ExtractGV.cpp
6   FunctionAttrs.cpp
7   GlobalDCE.cpp
8   GlobalOpt.cpp
9   IPConstantPropagation.cpp
10   IPO.cpp
11   InlineAlways.cpp
12   InlineSimple.cpp
13   Inliner.cpp
14   Internalize.cpp
15   LoopExtractor.cpp
16   MergeFunctions.cpp
17   PartialInlining.cpp
18   PassManagerBuilder.cpp
19   PruneEH.cpp
20   StripDeadPrototypes.cpp
21   StripSymbols.cpp
22   )
23
24 add_llvm_library_dependencies(LLVMipo
25   LLVMAnalysis
26   LLVMCore
27   LLVMScalarOpts
28   LLVMSupport
29   LLVMTarget
30   LLVMTransformUtils
31   LLVMipa
32   )