[polly] Change to range-based invocation of llvm::sort

llvm-svn: 351502
This commit is contained in:
Mandeep Singh Grang 2019-01-18 01:06:46 +00:00
parent e912cc512d
commit 8108b7a60f
1 changed files with 1 additions and 1 deletions

View File

@ -719,7 +719,7 @@ static void printSortedPolyhedra(isl::union_set USet, llvm::raw_ostream &OS,
}
// Sort the polyhedra.
llvm::sort(BSets.begin(), BSets.end(), orderComparer);
llvm::sort(BSets, orderComparer);
// Print the polyhedra.
bool First = true;