54 lines
1011 B
Makefile
54 lines
1011 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
LIB= llvmtransformutils
|
|
|
|
SRCDIR= lib/Transforms/Utils
|
|
SRCS= ASanStackFrameLayout.cpp \
|
|
AddDiscriminators.cpp \
|
|
BasicBlockUtils.cpp \
|
|
BreakCriticalEdges.cpp \
|
|
BuildLibCalls.cpp \
|
|
BypassSlowDivision.cpp \
|
|
CloneFunction.cpp \
|
|
CloneModule.cpp \
|
|
CmpInstAnalysis.cpp \
|
|
CodeExtractor.cpp \
|
|
CtorUtils.cpp \
|
|
DemoteRegToStack.cpp \
|
|
FlattenCFG.cpp \
|
|
GlobalStatus.cpp \
|
|
InlineFunction.cpp \
|
|
InstructionNamer.cpp \
|
|
IntegerDivision.cpp \
|
|
LCSSA.cpp \
|
|
Local.cpp \
|
|
LoopSimplify.cpp \
|
|
LoopUnroll.cpp \
|
|
LoopUnrollRuntime.cpp \
|
|
LoopUtils.cpp \
|
|
LoopVersioning.cpp \
|
|
LowerInvoke.cpp \
|
|
LowerSwitch.cpp \
|
|
Mem2Reg.cpp \
|
|
MetaRenamer.cpp \
|
|
ModuleUtils.cpp \
|
|
PromoteMemoryToRegister.cpp \
|
|
SSAUpdater.cpp \
|
|
SimplifyCFG.cpp \
|
|
SimplifyIndVar.cpp \
|
|
SimplifyInstructions.cpp \
|
|
SimplifyLibCalls.cpp \
|
|
SymbolRewriter.cpp \
|
|
UnifyFunctionExitNodes.cpp \
|
|
ValueMapper.cpp
|
|
|
|
.if ${MK_CLANG_EXTRAS} != "no"
|
|
SRCS+= Utils.cpp
|
|
.endif
|
|
|
|
TGHDRS= Intrinsics
|
|
|
|
.include "../clang.lib.mk"
|