diff options
Diffstat (limited to 'polly/lib/CodeGen/PPCGCodeGeneration.cpp')
-rw-r--r-- | polly/lib/CodeGen/PPCGCodeGeneration.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/polly/lib/CodeGen/PPCGCodeGeneration.cpp b/polly/lib/CodeGen/PPCGCodeGeneration.cpp index 06c27f73626..47beb1ca924 100644 --- a/polly/lib/CodeGen/PPCGCodeGeneration.cpp +++ b/polly/lib/CodeGen/PPCGCodeGeneration.cpp @@ -262,7 +262,8 @@ static MustKillsInfo computeMustKillsInfo(const Scop &S) { isl::schedule KillSchedule = isl::schedule::from_domain(KillStmtDomain); if (Info.KillsSchedule) - Info.KillsSchedule = Info.KillsSchedule.set(KillSchedule); + Info.KillsSchedule = isl::manage( + isl_schedule_set(Info.KillsSchedule.release(), KillSchedule.copy())); else Info.KillsSchedule = KillSchedule; } |