2118f42afd
from the latter.
36 lines
612 B
Makefile
36 lines
612 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.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"
|