mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-31 09:22:31 +00:00
4ed355301c
sanstats.cpp has the following include chain: llvm/Transforms/Utils/SanitizerStats.h llvm/IR/IRBuilder.h llvm/IR/ConstantFolder.h llvm/IR/InstrTypes.h llvm/IR/Attributes.h llvm/IR/Attributes.gen This means sanstats needs to depend on intrinsics_gen. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287404 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
122 B
CMake
12 lines
122 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
Symbolize
|
|
)
|
|
|
|
add_llvm_tool(sanstats
|
|
sanstats.cpp
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
)
|