[clang] [llvm] [EquivalenceClasses] Use SmallVector for deterministic iteration order. (PR #134075)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 2 05:49:53 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;
----------------
arsenm wrote:

Can you combine into SetVector? 

https://github.com/llvm/llvm-project/pull/134075


More information about the llvm-commits mailing list