diff options
author | Sebastian Pop <spop@codeaurora.org> | 2014-03-13 20:29:19 +0000 |
---|---|---|
committer | Sebastian Pop <spop@codeaurora.org> | 2014-03-13 20:29:19 +0000 |
commit | 96e9ed71ea8f812c42016434efa0939352a75b5c (patch) | |
tree | 60559ac6f6727403b3b8a7cdb59263eec26f7afc | |
parent | a49c5064a186c5cfec789fa29c9d502b93541dd6 (diff) | |
download | bcm5719-llvm-96e9ed71ea8f812c42016434efa0939352a75b5c.tar.gz bcm5719-llvm-96e9ed71ea8f812c42016434efa0939352a75b5c.zip |
add intrinsics_gen dependence on Polly
to avoid build errors like this:
In file included from ../include/llvm/IR/IntrinsicInst.h:30:0,
from ../tools/polly/lib/CodeGen/BlockGenerators.cpp:28:
../include/llvm/IR/Intrinsics.h:41:34: fatal error: llvm/IR/Intrinsics.gen: No such file or directory
The earlier change in commit b1d2e6d5c3ce151ef6b7213c00019715e63d7cfb has been
accidentally reverted in:
commit 6b1963814877f5b1b161d3a73a3c8246c4ad4787
Author: simbuerg <simbuerg@91177308-0d34-0410-b5e6-96231b3b80d8>
Date: Tue Mar 11 21:26:06 2014 +0000
Refactor Polly's Pass creation and initialization.
Rename some files and adjust cmake accordingly
llvm-svn: 203843
-rw-r--r-- | polly/lib/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/CMakeLists.txt b/polly/lib/CMakeLists.txt index 571150ef585..1cb544ce1ab 100644 --- a/polly/lib/CMakeLists.txt +++ b/polly/lib/CMakeLists.txt @@ -80,7 +80,7 @@ add_polly_loadable_module(LLVMPolly if (TARGET intrinsics_gen) # Check if we are building as part of an LLVM build - add_dependencies(LLVMPolly intrinsics_gen) + add_dependencies(Polly intrinsics_gen) endif() target_link_libraries(LLVMPolly Polly) |