This is an archive of the discontinued LLVM Phabricator instance.

[ARM] Change std::sort to llvm::sort in response to r327219
ClosedPublic

Authored by mgrang on Mar 23 2018, 5:11 PM.

Details

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.

Note: This patch is one of a series of patches to replace *all* std::sort to llvm::sort.
Refer the comments section in D44363 for a list of all the required patches.

Diff Detail

Repository
rL LLVM

Event Timeline

mgrang created this revision.Mar 23 2018, 5:11 PM
mgrang edited the summary of this revision. (Show Details)Mar 23 2018, 9:04 PM

Ping for reviews please.

bkramer accepted this revision.Apr 4 2018, 7:42 AM

this is trivially fine.

This revision is now accepted and ready to land.Apr 4 2018, 7:42 AM
This revision was automatically updated to reflect the committed changes.