[DeadArgElim] Replace insert with emplace (NFC)

This commit is contained in:
Pavel Samolysov 2022-06-25 10:31:27 +03:00
parent 575eb2133b
commit 6e3d4712b9
1 changed files with 1 additions and 1 deletions

View File

@ -660,7 +660,7 @@ void DeadArgumentEliminationPass::markValue(const RetOrArg &RA, Liveness L,
}
// Note any uses of this value, so this value can be
// marked live whenever one of the uses becomes live.
Uses.insert(std::make_pair(MaybeLiveUse, RA));
Uses.emplace(MaybeLiveUse, RA);
}
break;
}