We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceaf6e9 commit 56e28a9Copy full SHA for 56e28a9
llvm/lib/Object/RecordStreamer.h
@@ -11,6 +11,7 @@
11
12
#include "llvm/ADT/DenseMap.h"
13
#include "llvm/ADT/StringMap.h"
14
+#include "llvm/ADT/MapVector.h"
15
#include "llvm/MC/MCDirectives.h"
16
#include "llvm/MC/MCStreamer.h"
17
#include "llvm/Support/SMLoc.h"
@@ -32,7 +33,7 @@ class RecordStreamer : public MCStreamer {
32
33
// Map of aliases created by .symver directives, saved so we can update
34
// their symbol binding after parsing complete. This maps from each
35
// aliasee to its list of aliases.
- DenseMap<const MCSymbol *, std::vector<StringRef>> SymverAliasMap;
36
+ MapVector<const MCSymbol *, std::vector<StringRef>> SymverAliasMap;
37
38
/// Get the state recorded for the given symbol.
39
State getSymbolState(const MCSymbol *Sym);
0 commit comments