Skip to content

Commit daec0aa

Browse files
author
Mandeep Singh Grang
committedMar 13, 2018
[polly] Change std::sort to llvm::sort in response to r327219
Summary: r327219 added wrappers to std::sort which randomly shuffle the container before sorting. This will help in uncovering non-determinism caused due to undefined sorting order of objects having the same key. To make use of that infrastructure we need to invoke llvm::sort instead of std::sort. Reviewers: grosser, efriedma, jdoerfert, bollu, sebpop Reviewed By: sebpop Subscribers: sebpop, mehdi_amini, llvm-commits, pollydev Tags: #polly Differential Revision: https://reviews.llvm.org/D44361 llvm-svn: 327361
1 parent aab6000 commit daec0aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎polly/lib/Support/ISLTools.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@ static void printSortedPolyhedra(isl::union_set USet, llvm::raw_ostream &OS,
744744
}
745745

746746
// Sort the polyhedra.
747-
std::sort(BSets.begin(), BSets.end(), orderComparer);
747+
llvm::sort(BSets.begin(), BSets.end(), orderComparer);
748748

749749
// Print the polyhedra.
750750
bool First = true;

0 commit comments

Comments
 (0)
Please sign in to comment.