summaryrefslogtreecommitdiff
path: root/tools/llvm-bcanalyzer
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2016-11-19 02:17:12 +0000
committerChris Bieneman <beanz@apple.com>2016-11-19 02:17:12 +0000
commit9f6a4f377e41f0ffdd1a845e19f6c3d37078a8d1 (patch)
tree30666fd87f321fb8a1a474eefd6105fbabf11ccb /tools/llvm-bcanalyzer
parent70a97679f3798b20282e157110f323cb3a2f3643 (diff)
[CMake] llvm-bcanalyzer depends on intrinsics_gen
llvm-bcanalyzer.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-bcanalyzer needs to depend on intrinsics_gen. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287424 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-bcanalyzer')
-rw-r--r--tools/llvm-bcanalyzer/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/llvm-bcanalyzer/CMakeLists.txt b/tools/llvm-bcanalyzer/CMakeLists.txt
index 369f469af85..15d51ee7a9d 100644
--- a/tools/llvm-bcanalyzer/CMakeLists.txt
+++ b/tools/llvm-bcanalyzer/CMakeLists.txt
@@ -5,4 +5,7 @@ set(LLVM_LINK_COMPONENTS
add_llvm_tool(llvm-bcanalyzer
llvm-bcanalyzer.cpp
+
+ DEPENDS
+ intrinsics_gen
)