[llvm] [TextAPI] Track RPaths in the order its provided via command line. (PR #131665)
Zixu Wang via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 18 11:38:32 PDT 2025
================
@@ -83,6 +83,33 @@ using AttrToTargets = std::map<std::string, TargetList>;
using TargetsToSymbols =
SmallVector<std::pair<TargetList, std::vector<JSONSymbol>>>;
+/// Wrapper over a vector for handling textstub attributes, mapped to target
+/// triples, that require insertion order to be intact in the resulting \c
+/// InterfaceFile.
+class InOrderAttrToTargets {
+ using EntryT = std::pair<std::string, TargetList>;
+
+public:
+ void insert(EntryT &&Entry) {
+ auto &Element = get(Entry.first);
+ Element.second = Entry.second;
----------------
zixu-w wrote:
Does this mean when inserting with an existing key in the container, the `TargetList` should be replaced instead of appended/merged?
https://github.com/llvm/llvm-project/pull/131665
More information about the llvm-commits
mailing list