mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-30 00:32:53 +00:00
b7195e783b
llvm-split.cpp has the following include chain: llvm/Bitcode/BitcodeWriter.h llvm/IR/ModuleSummaryIndex.h llvm/IR/Module.h llvm/IR/Function.h llvm/IR/Argument.h llvm/IR/Attributes.h llvm/IR/Attributes.gen This means llvm-split needs to depend on intrinsics_gen. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287399 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
161 B
CMake
15 lines
161 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
TransformUtils
|
|
BitWriter
|
|
Core
|
|
IRReader
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(llvm-split
|
|
llvm-split.cpp
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
)
|