[llvm] Use MapVector to fix lld thinLTO bep issue. (PR #117551)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Dec 1 18:29:19 PST 2024
================
@@ -28,11 +29,11 @@ class RecordStreamer : public MCStreamer {
private:
const Module &M;
- StringMap<State> Symbols;
+ MapVector<StringRef, State> Symbols;
----------------
llvmssh wrote:
Symbols generation order comes from traversing SymverAliasMap in flushSymverDirectives func, which is an unordered map data structure, and I understand that traversing creates nondeterminism problems.
https://github.com/llvm/llvm-project/pull/117551
More information about the llvm-commits
mailing list