Displaying 2 results from an estimated 2 matches for "d39245".
Did you mean:
139245
2018 Apr 13
2
llvm::sort - A new wrapper to std::sort
r327219 added a new wrapper function called *llvm::sort*. If
EXPENSIVE_CHECKS is enabled, llvm::sort will randomly shuffle the
container before invoking std::sort. This will help uncover
non-deterministic ordering of objects having the same key.
All occurrences of std::sort have been changed to llvm::sort in
llvm/clang/polly repos.
Going forward please make sure to avoid use of std::sort and
2018 Apr 13
0
[cfe-dev] llvm::sort - A new wrapper to std::sort
On 13 April 2018 at 21:24, Grang, Mandeep Singh via cfe-dev
<cfe-dev at lists.llvm.org> wrote:
> Going forward please make sure to avoid use of std::sort and instead use
> llvm::sort. Maybe we should add a note on the usage of llvm::sort to the
> LLVM Coding Standards?
Very definitely. I quite like the idea, but banning a standard library
function on this scale is a big step and