Home | History | Annotate | Line # | Download | only in libLLVMInstCombine
      1  1.4  lukem #	$NetBSD: Makefile,v 1.4 2023/06/03 08:52:53 lukem Exp $
      2  1.1  joerg 
      3  1.1  joerg LIB=	LLVMInstCombine
      4  1.1  joerg 
      5  1.1  joerg .include <bsd.init.mk>
      6  1.1  joerg 
      7  1.1  joerg .PATH: ${LLVM_SRCDIR}/lib/Transforms/InstCombine
      8  1.1  joerg 
      9  1.1  joerg SRCS+=	InstCombineAddSub.cpp \
     10  1.1  joerg 	InstCombineAndOrXor.cpp \
     11  1.1  joerg 	InstCombineAtomicRMW.cpp \
     12  1.1  joerg 	InstCombineCalls.cpp \
     13  1.1  joerg 	InstCombineCasts.cpp \
     14  1.1  joerg 	InstCombineCompares.cpp \
     15  1.1  joerg 	InstCombineLoadStoreAlloca.cpp \
     16  1.1  joerg 	InstCombineMulDivRem.cpp \
     17  1.3  joerg 	InstCombineNegator.cpp \
     18  1.1  joerg 	InstCombinePHI.cpp \
     19  1.1  joerg 	InstCombineSelect.cpp \
     20  1.1  joerg 	InstCombineShifts.cpp \
     21  1.1  joerg 	InstCombineSimplifyDemanded.cpp \
     22  1.1  joerg 	InstCombineVectorOps.cpp \
     23  1.1  joerg 	InstructionCombining.cpp
     24  1.1  joerg 
     25  1.1  joerg .if defined(HOSTLIB)
     26  1.1  joerg .include <bsd.hostlib.mk>
     27  1.1  joerg .else
     28  1.1  joerg .include <bsd.lib.mk>
     29  1.1  joerg .endif
     30  1.2    mrg 
     31  1.4  lukem CWARNFLAGS.gcc+=	${CC_WNO_ADDRESS_OF_PACKED_MEMBER}
     32