[clang] [llvm] [EquivalenceClasses] Use SmallVector for deterministic iteration order. (PR #134075)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 3 08:58:28 PDT 2025
================
@@ -138,6 +139,9 @@ class EquivalenceClasses {
/// ECValues, it just keeps the key as part of the value.
std::set<ECValue, ECValueComparator> TheMapping;
+ /// List of all members, used to provide a determinstic iteration order.
+ SmallVector<const ECValue *> Members;
----------------
fhahn wrote:
Shared it here https://github.com/llvm/llvm-project/pull/134264, not sure if it is a huge improvement though
https://github.com/llvm/llvm-project/pull/134075
More information about the llvm-commits
mailing list