aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Transforms/Scalar/CMakeLists.txt')
-rw-r--r--lib/Transforms/Scalar/CMakeLists.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/Transforms/Scalar/CMakeLists.txt b/lib/Transforms/Scalar/CMakeLists.txt
new file mode 100644
index 0000000..683c1c2
--- /dev/null
+++ b/lib/Transforms/Scalar/CMakeLists.txt
@@ -0,0 +1,34 @@
+add_llvm_library(LLVMScalarOpts
+ ABCD.cpp
+ ADCE.cpp
+ BasicBlockPlacement.cpp
+ CodeGenPrepare.cpp
+ ConstantProp.cpp
+ DCE.cpp
+ DeadStoreElimination.cpp
+ GEPSplitter.cpp
+ GVN.cpp
+ IndVarSimplify.cpp
+ JumpThreading.cpp
+ LICM.cpp
+ LoopDeletion.cpp
+ LoopIndexSplit.cpp
+ LoopRotation.cpp
+ LoopStrengthReduce.cpp
+ LoopUnrollPass.cpp
+ LoopUnswitch.cpp
+ MemCpyOptimizer.cpp
+ Reassociate.cpp
+ Reg2Mem.cpp
+ SCCP.cpp
+ SCCVN.cpp
+ Scalar.cpp
+ ScalarReplAggregates.cpp
+ SimplifyCFGPass.cpp
+ SimplifyHalfPowrLibCalls.cpp
+ SimplifyLibCalls.cpp
+ TailDuplication.cpp
+ TailRecursionElimination.cpp
+ )
+
+target_link_libraries (LLVMScalarOpts LLVMTransformUtils)