mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 06:38:44 +00:00
11f7af97fc
llvm-dis.cpp has the following include chain: llvm/Bitcode/BitcodeReader.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-dis needs to depend on intrinsics_gen. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287428 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
129 B
CMake
13 lines
129 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
BitReader
|
|
Core
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(llvm-dis
|
|
llvm-dis.cpp
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
)
|