]> CyberLeo.Net >> Repos - FreeBSD/releng/9.1.git/blob - lib/clang/libllvmscalaropts/Makefile
Fix Denial of Service vulnerability in named(8). [13:07]
[FreeBSD/releng/9.1.git] / lib / clang / libllvmscalaropts / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 LIB=    llvmscalaropts
6
7 SRCDIR= lib/Transforms/Scalar
8 SRCS=   ADCE.cpp \
9         BasicBlockPlacement.cpp \
10         CodeGenPrepare.cpp \
11         ConstantProp.cpp \
12         CorrelatedValuePropagation.cpp \
13         DCE.cpp \
14         DeadStoreElimination.cpp \
15         EarlyCSE.cpp \
16         GlobalMerge.cpp \
17         GVN.cpp \
18         IndVarSimplify.cpp \
19         JumpThreading.cpp \
20         LICM.cpp \
21         LoopDeletion.cpp \
22         LoopIdiomRecognize.cpp \
23         LoopRotation.cpp \
24         LoopStrengthReduce.cpp \
25         LoopUnrollPass.cpp \
26         LoopUnswitch.cpp \
27         LowerAtomic.cpp \
28         MemCpyOptimizer.cpp \
29         ObjCARC.cpp \
30         Reassociate.cpp \
31         Reg2Mem.cpp \
32         SCCP.cpp \
33         ScalarReplAggregates.cpp \
34         SimplifyCFGPass.cpp \
35         SimplifyLibCalls.cpp \
36         Sink.cpp \
37         TailRecursionElimination.cpp
38
39 .if ${MK_CLANG_EXTRAS} != "no"
40 SRCS+=  LoopInstSimplify.cpp \
41         LowerAtomic.cpp \
42         Reg2Mem.cpp \
43         Scalar.cpp
44 .endif
45
46 TGHDRS= Intrinsics
47
48 .include "../clang.lib.mk"