summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kruse <llvm@meinersbur.de>2018-08-01 00:27:29 +0000
committerMichael Kruse <llvm@meinersbur.de>2018-08-01 00:27:29 +0000
commit42ad818265ed8f4aedc002ffde487820f377fe3a (patch)
treed413bd68bc7a86f95685e856bf0ec11285ca7add
parent23655020a271d83870163905905a13a26cfceb94 (diff)
downloadbcm5719-llvm-42ad818265ed8f4aedc002ffde487820f377fe3a.tar.gz
bcm5719-llvm-42ad818265ed8f4aedc002ffde487820f377fe3a.zip
[Polly-ACC] Fix compilation after r338450. NFC.
llvm-svn: 338462
-rw-r--r--polly/lib/CodeGen/PPCGCodeGeneration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/CodeGen/PPCGCodeGeneration.cpp b/polly/lib/CodeGen/PPCGCodeGeneration.cpp
index 13a4376682b..06c27f73626 100644
--- a/polly/lib/CodeGen/PPCGCodeGeneration.cpp
+++ b/polly/lib/CodeGen/PPCGCodeGeneration.cpp
@@ -1289,7 +1289,7 @@ void GPUNodeBuilder::createUser(__isl_take isl_ast_node *UserStmt) {
}
void GPUNodeBuilder::createFor(__isl_take isl_ast_node *Node) {
- createForSequential(Node, false);
+ createForSequential(isl::manage(Node), false);
}
void GPUNodeBuilder::createKernelCopy(ppcg_kernel_stmt *KernelStmt) {
OpenPOWER on IntegriCloud