[CMake] bugpoint-passes depends on intrinsics_gen

TestPasses.cpp has the following include chain:

llvm/IR/InstVisitor.h
llvm/IR/CallSite.h
llvm/IR/Attributes.h
llvm/IR/Attributes.gen

This means bugpoint-passes needs to depend on intrinsics_gen.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287425 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Bieneman 2016-11-19 02:20:59 +00:00
parent 9f6a4f377e
commit 801fb8c030

View File

@ -16,6 +16,8 @@ endif()
add_llvm_loadable_module( BugpointPasses
TestPasses.cpp
)
add_dependencies(BugpointPasses bugpoint)
DEPENDS
intrinsics_gen
bugpoint
)