1# $OpenBSD: Makefile,v 1.6 2021/04/28 12:55:39 patrick Exp $ 2 3LIB= LLVMInstCombine 4NOPROFILE= 5 6CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/Transforms 7CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/Transforms/InstCombine 8CPPFLAGS+= -I${.OBJDIR}/../include/llvm/Transforms/InstCombine 9 10SRCS+= InstructionCombining.cpp \ 11 InstCombineAddSub.cpp \ 12 InstCombineAtomicRMW.cpp \ 13 InstCombineAndOrXor.cpp \ 14 InstCombineCalls.cpp \ 15 InstCombineCasts.cpp \ 16 InstCombineCompares.cpp \ 17 InstCombineLoadStoreAlloca.cpp \ 18 InstCombineMulDivRem.cpp \ 19 InstCombineNegator.cpp \ 20 InstCombinePHI.cpp \ 21 InstCombineSelect.cpp \ 22 InstCombineShifts.cpp \ 23 InstCombineSimplifyDemanded.cpp \ 24 InstCombineVectorOps.cpp 25 26.PATH: ${.CURDIR}/../../../llvm/llvm/lib/Transforms/InstCombine 27