File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8077,16 +8077,16 @@ Error ModuleSummaryIndexBitcodeReader::parseEntireSummary(unsigned ID) {
8077
8077
case bitc::FS_CFI_FUNCTION_DEFS: {
8078
8078
auto &CfiFunctionDefs = TheIndex.cfiFunctionDefs ();
8079
8079
for (unsigned I = 0 ; I != Record.size (); I += 2 )
8080
- CfiFunctionDefs.insert (
8081
- {Strtab. data () + Record[I], static_cast <size_t >(Record[I + 1 ])} );
8080
+ CfiFunctionDefs.emplace (Strtab. data () + Record[I],
8081
+ static_cast <size_t >(Record[I + 1 ]));
8082
8082
break ;
8083
8083
}
8084
8084
8085
8085
case bitc::FS_CFI_FUNCTION_DECLS: {
8086
8086
auto &CfiFunctionDecls = TheIndex.cfiFunctionDecls ();
8087
8087
for (unsigned I = 0 ; I != Record.size (); I += 2 )
8088
- CfiFunctionDecls.insert (
8089
- {Strtab. data () + Record[I], static_cast <size_t >(Record[I + 1 ])} );
8088
+ CfiFunctionDecls.emplace (Strtab. data () + Record[I],
8089
+ static_cast <size_t >(Record[I + 1 ]));
8090
8090
break ;
8091
8091
}
8092
8092
You can’t perform that action at this time.
0 commit comments