mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-12 05:40:30 +00:00
![Chris Bieneman](/assets/img/avatar_default.png)
verify-uselistorder.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 verify-uselistorder needs to depend on intrinsics_gen. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287405 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
186 B
CMake
16 lines
186 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
AsmParser
|
|
BitReader
|
|
BitWriter
|
|
Core
|
|
IRReader
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(verify-uselistorder
|
|
verify-uselistorder.cpp
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
)
|