]> granicus.if.org Git - llvm/commitdiff
[CMake] llvm-bcanalyzer depends on intrinsics_gen
authorChris Bieneman <beanz@apple.com>
Sat, 19 Nov 2016 02:17:12 +0000 (02:17 +0000)
committerChris Bieneman <beanz@apple.com>
Sat, 19 Nov 2016 02:17:12 +0000 (02:17 +0000)
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

tools/llvm-bcanalyzer/CMakeLists.txt

index 369f469af85484dd975eb03b95b8d571dfcba03f..15d51ee7a9d75d6bba97d625a953703b9f6d448c 100644 (file)
@@ -5,4 +5,7 @@ set(LLVM_LINK_COMPONENTS
 
 add_llvm_tool(llvm-bcanalyzer
   llvm-bcanalyzer.cpp
+
+  DEPENDS
+  intrinsics_gen
   )