[polly] r310199 - [Polly] Fix for the JSON Exporter
Tobias Grosser via llvm-commits
llvm-commits at lists.llvm.org
Sun Aug 6 04:41:10 PDT 2017
Author: grosser
Date: Sun Aug 6 04:41:10 2017
New Revision: 310199
URL: http://llvm.org/viewvc/llvm-project?rev=310199&view=rev
Log:
[Polly] Fix for the JSON Exporter
Summary:
Small patch to fix the JSON exporter.
Currently, using "opt -polly-export-jscop" does not generate jscop files, but gives an error:
*** Error in `opt': corrupted double-linked list: 0x0000000000bc4bb0 ***
Updated the function getAccessRelationStr() to work with the current version of getAccessRelation(), fixing the JSON exporter
Reviewers: bollu, grosser
Reviewed By: grosser
Subscribers: grosser, llvm-commits, pollydev
Tags: #polly
Differential Revision: https://reviews.llvm.org/D36370
Modified:
polly/trunk/lib/Analysis/ScopInfo.cpp
Modified: polly/trunk/lib/Analysis/ScopInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopInfo.cpp?rev=310199&r1=310198&r2=310199&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopInfo.cpp (original)
+++ polly/trunk/lib/Analysis/ScopInfo.cpp Sun Aug 6 04:41:10 2017
@@ -701,7 +701,7 @@ std::string MemoryAccess::getNewAccessRe
}
std::string MemoryAccess::getAccessRelationStr() const {
- return isl::manage(getAccessRelation().get()).to_str();
+ return getAccessRelation().to_str();
}
isl::basic_map MemoryAccess::createBasicAccessMap(ScopStmt *Statement) {
More information about the llvm-commits
mailing list