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 e4a6e2e commit d8e8892Copy full SHA for d8e8892
llvm/lib/Transforms/IPO/LowerTypeTests.cpp
@@ -1699,9 +1699,9 @@ void LowerTypeTestsModule::buildBitSetsFromFunctionsNative(
1699
1700
if (IsExported) {
1701
if (IsJumpTableCanonical)
1702
- ExportSummary->cfiFunctionDefs().insert(std::string(F->getName()));
+ ExportSummary->cfiFunctionDefs().emplace(F->getName());
1703
else
1704
- ExportSummary->cfiFunctionDecls().insert(std::string(F->getName()));
+ ExportSummary->cfiFunctionDecls().emplace(F->getName());
1705
}
1706
1707
if (!IsJumpTableCanonical) {
0 commit comments