[polly] r203843 - add intrinsics_gen dependence on Polly
Sebastian Pop
spop at codeaurora.org
Thu Mar 13 13:29:19 PDT 2014
Author: spop
Date: Thu Mar 13 15:29:19 2014
New Revision: 203843
URL: http://llvm.org/viewvc/llvm-project?rev=203843&view=rev
Log:
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 at 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
Modified:
polly/trunk/lib/CMakeLists.txt
Modified: polly/trunk/lib/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/CMakeLists.txt?rev=203843&r1=203842&r2=203843&view=diff
==============================================================================
--- polly/trunk/lib/CMakeLists.txt (original)
+++ polly/trunk/lib/CMakeLists.txt Thu Mar 13 15:29:19 2014
@@ -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)
More information about the llvm-commits
mailing list