blob: 3752aef1987f07391376080415768dff25288add (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $FreeBSD$
.include <bsd.own.mk>
LIB= llvminstcombine
SRCDIR= lib/Transforms/InstCombine
SRCS= InstCombineAddSub.cpp \
InstCombineAndOrXor.cpp \
InstCombineCalls.cpp \
InstCombineCasts.cpp \
InstCombineCompares.cpp \
InstCombineLoadStoreAlloca.cpp \
InstCombineMulDivRem.cpp \
InstCombinePHI.cpp \
InstCombineSelect.cpp \
InstCombineShifts.cpp \
InstCombineSimplifyDemanded.cpp \
InstCombineVectorOps.cpp \
InstructionCombining.cpp
TGHDRS= Intrinsics
.include "../clang.lib.mk"
|