31 lines · plain
1add_llvm_component_library(LLVMInstCombine2 InstructionCombining.cpp3 InstCombineAddSub.cpp4 InstCombineAtomicRMW.cpp5 InstCombineAndOrXor.cpp6 InstCombineCalls.cpp7 InstCombineCasts.cpp8 InstCombineCompares.cpp9 InstCombineLoadStoreAlloca.cpp10 InstCombineMulDivRem.cpp11 InstCombineNegator.cpp12 InstCombinePHI.cpp13 InstCombineSelect.cpp14 InstCombineShifts.cpp15 InstCombineSimplifyDemanded.cpp16 InstCombineVectorOps.cpp17 18 ADDITIONAL_HEADER_DIRS19 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Transforms20 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Transforms/InstCombine21 22 DEPENDS23 intrinsics_gen24 25 LINK_COMPONENTS26 Analysis27 Core28 Support29 TransformUtils30 )31