Open
Description
When llvm-cov show
shows instantiation groups, it seems to print them in a non-deterministic order (presumably influenced by hash bucket order).
This is a hassle for Rust's -Cinstrument-coverage
tests, since they have to jump through hoops to ignore instantiation names when comparing output snapshots.
Ideally the instantiations should at least be naïvely sorted by their function name. That would at least be deterministic in the common case where all instantiations have distinct names.