[llvm] [GC] Use `MapVector` for `GCStrategyMap` (PR #132729)

via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 24 05:42:21 PDT 2025


================
@@ -151,9 +152,9 @@ class GCFunctionInfo {
   size_t live_size(const iterator &p) const { return roots_size(); }
 };
 
-struct GCStrategyMap {
-  StringMap<std::unique_ptr<GCStrategy>> StrategyMap;
-
+class GCStrategyMap
+    : public MapVector<std::string, std::unique_ptr<GCStrategy>> {
----------------
paperchalice wrote:

May be a bad practice here.

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


More information about the llvm-commits mailing list