2754fe609d
This contains many improvements, primarily better C++ support, an integrated assembler for x86 and support for -pg.
31 lines
557 B
Makefile
31 lines
557 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= llvmipo
|
|
|
|
SRCDIR= lib/Transforms/IPO
|
|
SRCS= ArgumentPromotion.cpp \
|
|
ConstantMerge.cpp \
|
|
DeadArgumentElimination.cpp \
|
|
DeadTypeElimination.cpp \
|
|
ExtractGV.cpp \
|
|
FunctionAttrs.cpp \
|
|
GlobalDCE.cpp \
|
|
GlobalOpt.cpp \
|
|
IPConstantPropagation.cpp \
|
|
InlineAlways.cpp \
|
|
InlineSimple.cpp \
|
|
Inliner.cpp \
|
|
Internalize.cpp \
|
|
LoopExtractor.cpp \
|
|
LowerSetJmp.cpp \
|
|
MergeFunctions.cpp \
|
|
PartialInlining.cpp \
|
|
PruneEH.cpp \
|
|
StripDeadPrototypes.cpp \
|
|
StripSymbols.cpp \
|
|
StructRetPromotion.cpp
|
|
|
|
TGHDRS= Intrinsics
|
|
|
|
.include "../clang.lib.mk"
|