summaryrefslogtreecommitdiff
path: root/external/apache2/llvm/lib/libLLVMTransformsUtils/Makefile
diff options
context:
space:
mode:
authorjoerg <joerg@NetBSD.org>2019-11-11 22:44:56 +0000
committerjoerg <joerg@NetBSD.org>2019-11-11 22:44:56 +0000
commit918c74ea12c6bac6ca9bd2147337c0e4fec5010e (patch)
tree3ef5212d84042aedbd5e0629e2c7dc2de1751526 /external/apache2/llvm/lib/libLLVMTransformsUtils/Makefile
parent5578004b9757994411ac0c8b959a53c2063844d1 (diff)
Update LLVM to 10.0.0git (01f3a59fb3e2542fce74c768718f594d0debd0da)
Diffstat (limited to 'external/apache2/llvm/lib/libLLVMTransformsUtils/Makefile')
-rw-r--r--external/apache2/llvm/lib/libLLVMTransformsUtils/Makefile75
1 files changed, 75 insertions, 0 deletions
diff --git a/external/apache2/llvm/lib/libLLVMTransformsUtils/Makefile b/external/apache2/llvm/lib/libLLVMTransformsUtils/Makefile
new file mode 100644
index 00000000000..19d276d49be
--- /dev/null
+++ b/external/apache2/llvm/lib/libLLVMTransformsUtils/Makefile
@@ -0,0 +1,75 @@
+# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:13 joerg Exp $
+
+LIB= LLVMTransformsUtils
+
+.include <bsd.init.mk>
+
+.PATH: ${LLVM_SRCDIR}/lib/Transforms/Utils
+
+SRCS+= AddDiscriminators.cpp \
+ ASanStackFrameLayout.cpp \
+ BasicBlockUtils.cpp \
+ BreakCriticalEdges.cpp \
+ BuildLibCalls.cpp \
+ BypassSlowDivision.cpp \
+ CallPromotionUtils.cpp \
+ CanonicalizeAliases.cpp \
+ CloneFunction.cpp \
+ CloneModule.cpp \
+ CodeExtractor.cpp \
+ CtorUtils.cpp \
+ DemoteRegToStack.cpp \
+ EntryExitInstrumenter.cpp \
+ EscapeEnumerator.cpp \
+ Evaluator.cpp \
+ FlattenCFG.cpp \
+ FunctionComparator.cpp \
+ FunctionImportUtils.cpp \
+ GlobalStatus.cpp \
+ GuardUtils.cpp \
+ ImportedFunctionsInliningStatistics.cpp \
+ InlineFunction.cpp \
+ InstructionNamer.cpp \
+ IntegerDivision.cpp \
+ LCSSA.cpp \
+ LibCallsShrinkWrap.cpp \
+ Local.cpp \
+ LoopRotationUtils.cpp \
+ LoopSimplify.cpp \
+ LoopUnrollAndJam.cpp \
+ LoopUnroll.cpp \
+ LoopUnrollPeel.cpp \
+ LoopUnrollRuntime.cpp \
+ LoopUtils.cpp \
+ LoopVersioning.cpp \
+ LowerInvoke.cpp \
+ LowerMemIntrinsics.cpp \
+ LowerSwitch.cpp \
+ Mem2Reg.cpp \
+ MetaRenamer.cpp \
+ MisExpect.cpp \
+ ModuleUtils.cpp \
+ NameAnonGlobals.cpp \
+ PredicateInfo.cpp \
+ PromoteMemoryToRegister.cpp \
+ SanitizerStats.cpp \
+ SimplifyCFG.cpp \
+ SimplifyIndVar.cpp \
+ SimplifyLibCalls.cpp \
+ SizeOpts.cpp \
+ SplitModule.cpp \
+ SSAUpdaterBulk.cpp \
+ SSAUpdater.cpp \
+ StripGCRelocates.cpp \
+ StripNonLineTableDebugInfo.cpp \
+ SymbolRewriter.cpp \
+ UnifyFunctionExitNodes.cpp \
+ Utils.cpp \
+ ValueMapper.cpp \
+ VNCoercion.cpp
+
+.if defined(HOSTLIB)
+.include <bsd.hostlib.mk>
+.else
+.include <bsd.lib.mk>
+.endif