1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

[CMake] llc depends on intrinsics_gen

llc.cpp has the following include chain:

llvm/Analysis/TargetLibraryInfo.h
llvm/IR/Function.h
llvm/IR/Argument.h
llvm/IR/Attributes.h
llvm/IR/Attributes.gen

This means llc needs to depend on intrinsics_gen.

llvm-svn: 287422
This commit is contained in:
Chris Bieneman 2016-11-19 02:12:03 +00:00
parent 0aa6e0b9db
commit be368c6be8

View File

@ -19,5 +19,8 @@ set(LLVM_NO_DEAD_STRIP 1)
add_llvm_tool(llc
llc.cpp
DEPENDS
intrinsics_gen
)
export_executable_symbols(llc)