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 84745da commit 5348a30Copy full SHA for 5348a30
llvm/include/llvm/ExecutionEngine/JITLink/aarch32.h
@@ -394,7 +394,7 @@ class StubsManager_v7 {
394
using StubMapEntry = std::tuple<Symbol *, Symbol *>;
395
396
Symbol *&getStubSymbolSlot(StringRef Name, bool Thumb) {
397
- StubMapEntry &Stubs = StubMap.try_emplace(Name).first->second;
+ StubMapEntry &Stubs = StubMap[Name];
398
if (Thumb)
399
return std::get<1>(Stubs);
400
return std::get<0>(Stubs);
0 commit comments