diff options
author | Tobias Grosser <tobias@grosser.es> | 2017-08-06 21:42:38 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2017-08-06 21:42:38 +0000 |
commit | 61bd3a4840f78ab8b3ecfa633d14e92f95acd0e5 (patch) | |
tree | 06613ba2f67433becc1dff1a5ca0ca04aba48f1c /polly/lib/Transform/ZoneAlgo.cpp | |
parent | 31df6f31c0813fa7a93b1c195e2182a2527965a4 (diff) | |
download | bcm5719-llvm-61bd3a4840f78ab8b3ecfa633d14e92f95acd0e5.tar.gz bcm5719-llvm-61bd3a4840f78ab8b3ecfa633d14e92f95acd0e5.zip |
[ScopInfo] Move Scop::getPwAffOnly to isl++ [NFC]
llvm-svn: 310231
Diffstat (limited to 'polly/lib/Transform/ZoneAlgo.cpp')
-rw-r--r-- | polly/lib/Transform/ZoneAlgo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/Transform/ZoneAlgo.cpp b/polly/lib/Transform/ZoneAlgo.cpp index 2dbe504819b..63ac92f023b 100644 --- a/polly/lib/Transform/ZoneAlgo.cpp +++ b/polly/lib/Transform/ZoneAlgo.cpp @@ -251,7 +251,7 @@ static std::string printInstruction(Instruction *Instr, ZoneAlgorithm::ZoneAlgorithm(const char *PassName, Scop *S, LoopInfo *LI) : PassName(PassName), IslCtx(S->getSharedIslCtx()), S(S), LI(LI), - Schedule(give(S->getSchedule())) { + Schedule(S->getSchedule()) { auto Domains = S->getDomains(); Schedule = |