[llvm] fc1450c - [CriticalAntiDepBreaker] Attempt to fix MSVC build error. NFC
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 6 23:57:55 PST 2025
Author: Craig Topper
Date: 2025-03-06T23:57:47-08:00
New Revision: fc1450c5976461ce30f662731c4c381bf80bf5e2
URL: https://github.com/llvm/llvm-project/commit/fc1450c5976461ce30f662731c4c381bf80bf5e2
DIFF: https://github.com/llvm/llvm-project/commit/fc1450c5976461ce30f662731c4c381bf80bf5e2.diff
LOG: [CriticalAntiDepBreaker] Attempt to fix MSVC build error. NFC
Added:
Modified:
llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp b/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
index 189a5cb260fa5..bc9da22138673 100644
--- a/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
+++ b/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
@@ -210,7 +210,7 @@ void CriticalAntiDepBreaker::PrescanInstruction(MachineInstr &MI) {
// If we're still willing to consider this register, note the reference.
if (Classes[Reg.id()] != reinterpret_cast<TargetRegisterClass *>(-1))
- RegRefs.insert(std::make_pair(Reg, &MO));
+ RegRefs.emplace(Reg, &MO);
if (MO.isUse() && Special) {
if (!KeepRegs.test(Reg.id())) {
More information about the llvm-commits
mailing list