blob: 4e87346d279648f02ff258f9c2255db88476494e (
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
25
26
27
28
29
30
31
|
# $NetBSD: Makefile,v 1.3 2021/05/30 01:56:53 joerg Exp $
LIB= LLVMInstCombine
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/Transforms/InstCombine
SRCS+= InstCombineAddSub.cpp \
InstCombineAndOrXor.cpp \
InstCombineAtomicRMW.cpp \
InstCombineCalls.cpp \
InstCombineCasts.cpp \
InstCombineCompares.cpp \
InstCombineLoadStoreAlloca.cpp \
InstCombineMulDivRem.cpp \
InstCombineNegator.cpp \
InstCombinePHI.cpp \
InstCombineSelect.cpp \
InstCombineShifts.cpp \
InstCombineSimplifyDemanded.cpp \
InstCombineVectorOps.cpp \
InstructionCombining.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
CWARNFLAGS.gcc+= ${GCC_NO_ADDR_OF_PACKED_MEMBER}
|