1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

[CMake] llvm-dis depends on intrinsics_gen

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.

llvm-svn: 287428
This commit is contained in:
Chris Bieneman 2016-11-19 02:31:14 +00:00
parent aba44b666c
commit e3e78691ad

View File

@ -6,4 +6,7 @@ set(LLVM_LINK_COMPONENTS
add_llvm_tool(llvm-dis
llvm-dis.cpp
DEPENDS
intrinsics_gen
)