CMakeLists.txt 550 B

123456789101112131415161718192021
  1. add_llvm_library(LLVMInstCombine
  2. InstructionCombining.cpp
  3. InstCombineAddSub.cpp
  4. InstCombineAndOrXor.cpp
  5. InstCombineCalls.cpp
  6. InstCombineCasts.cpp
  7. InstCombineCompares.cpp
  8. InstCombineLoadStoreAlloca.cpp
  9. InstCombineMulDivRem.cpp
  10. InstCombinePHI.cpp
  11. InstCombineSelect.cpp
  12. InstCombineShifts.cpp
  13. InstCombineSimplifyDemanded.cpp
  14. InstCombineVectorOps.cpp
  15. ADDITIONAL_HEADER_DIRS
  16. ${LLVM_MAIN_INCLUDE_DIR}/llvm/Transforms
  17. ${LLVM_MAIN_INCLUDE_DIR}/llvm/Transforms/InstCombine
  18. )
  19. add_dependencies(LLVMInstCombine intrinsics_gen)