[PATCH] D44360: [compiler-rt] Change std::sort to llvm::sort in response to r327219
Simon Pilgrim via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 16 08:28:57 PDT 2018
RKSimon added inline comments.
================
Comment at: lib/asan/tests/asan_mem_test.cc:85
if (i == 0) continue;
- sort(v.begin(), v.end());
+ llvm::sort(v.begin(), v.end());
for (size_t j = 1; j < v.size(); j++) {
----------------
Is there any point to checking integer type sorts like this and some of the others in this patch?
Repository:
rCRT Compiler Runtime
https://reviews.llvm.org/D44360
More information about the llvm-commits
mailing list