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.
2 parents 2a2d306 + d8e8892 commit 37300bcCopy full SHA for 37300bc
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