mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-21 11:13:30 +00:00
3861d79fd7
branch. This is effectively llvm/clang 3.2 RC2; the 3.2 release is coming soon.
36 lines
611 B
Makefile
36 lines
611 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= llvmipo
|
|
|
|
SRCDIR= lib/Transforms/IPO
|
|
SRCS= ArgumentPromotion.cpp \
|
|
BarrierNoopPass.cpp \
|
|
ConstantMerge.cpp \
|
|
DeadArgumentElimination.cpp \
|
|
ExtractGV.cpp \
|
|
FunctionAttrs.cpp \
|
|
GlobalDCE.cpp \
|
|
GlobalOpt.cpp \
|
|
IPConstantPropagation.cpp \
|
|
InlineAlways.cpp \
|
|
InlineSimple.cpp \
|
|
Inliner.cpp \
|
|
Internalize.cpp \
|
|
LoopExtractor.cpp \
|
|
MergeFunctions.cpp \
|
|
PartialInlining.cpp \
|
|
PassManagerBuilder.cpp \
|
|
PruneEH.cpp \
|
|
StripDeadPrototypes.cpp \
|
|
StripSymbols.cpp
|
|
|
|
.if ${MK_CLANG_EXTRAS} != "no"
|
|
SRCS+= IPO.cpp
|
|
.endif
|
|
|
|
TGHDRS= Intrinsics
|
|
|
|
.include "../clang.lib.mk"
|