diff options
author | Chris Bieneman <beanz@apple.com> | 2016-11-18 23:30:58 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2016-11-18 23:30:58 +0000 |
commit | 9c520d75b98465db76e5a95f8620f67307d13259 (patch) | |
tree | 860d08145584b27b4fc0af7d460993da0e55b2cb /llvm/tools | |
parent | 585b4a3e392a18ac8286e422abe4bad3e0fbc2c3 (diff) | |
download | bcm5719-llvm-9c520d75b98465db76e5a95f8620f67307d13259.tar.gz bcm5719-llvm-9c520d75b98465db76e5a95f8620f67307d13259.zip |
[CMake] verify-uselistorder depends on intrinsics_gen
verify-uselistorder.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 verify-uselistorder needs to depend on intrinsics_gen.
llvm-svn: 287405
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/verify-uselistorder/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/tools/verify-uselistorder/CMakeLists.txt b/llvm/tools/verify-uselistorder/CMakeLists.txt index 260a95adb6a..74f7195c906 100644 --- a/llvm/tools/verify-uselistorder/CMakeLists.txt +++ b/llvm/tools/verify-uselistorder/CMakeLists.txt @@ -9,4 +9,7 @@ set(LLVM_LINK_COMPONENTS add_llvm_tool(verify-uselistorder verify-uselistorder.cpp + + DEPENDS + intrinsics_gen ) |