[PATCH] D44361: [polly] Change std::sort to llvm::sort in response to r327219
Mandeep Singh Grang via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 12 22:28:27 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL327361: [polly] Change std::sort to llvm::sort in response to r327219 (authored by mgrang, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D44361?vs=137937&id=138129#toc
Repository:
rL LLVM
https://reviews.llvm.org/D44361
Files:
polly/trunk/lib/Support/ISLTools.cpp
Index: polly/trunk/lib/Support/ISLTools.cpp
===================================================================
--- polly/trunk/lib/Support/ISLTools.cpp
+++ polly/trunk/lib/Support/ISLTools.cpp
@@ -744,7 +744,7 @@
}
// Sort the polyhedra.
- std::sort(BSets.begin(), BSets.end(), orderComparer);
+ llvm::sort(BSets.begin(), BSets.end(), orderComparer);
// Print the polyhedra.
bool First = true;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D44361.138129.patch
Type: text/x-patch
Size: 413 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180313/24bd4f2e/attachment.bin>
More information about the llvm-commits
mailing list