Skip to content

Commit 43ab8ed

Browse files
committed
[𝘀𝗽𝗿] initial version
Created using spr 1.3.4
1 parent 21d973d commit 43ab8ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Transforms/IPO/LowerTypeTests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1699,9 +1699,9 @@ void LowerTypeTestsModule::buildBitSetsFromFunctionsNative(
16991699

17001700
if (IsExported) {
17011701
if (IsJumpTableCanonical)
1702-
ExportSummary->cfiFunctionDefs().insert(std::string(F->getName()));
1702+
ExportSummary->cfiFunctionDefs().emplace(F->getName());
17031703
else
1704-
ExportSummary->cfiFunctionDecls().insert(std::string(F->getName()));
1704+
ExportSummary->cfiFunctionDecls().emplace(F->getName());
17051705
}
17061706

17071707
if (!IsJumpTableCanonical) {

0 commit comments

Comments
 (0)