[llvm] [CodeGen] Combine two loops in SloIndexes.cpp file (PR #127631)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 28 06:25:04 PST 2025


================
@@ -220,32 +221,39 @@ void SlotIndexes::repairIndexesInRange(MachineBasicBlock *MBB,
     MachineInstr *SlotMI = ListI->getInstr();
     MachineInstr *MI = (MBBI != MBB->end() && !pastStart) ? &*MBBI : nullptr;
     bool MBBIAtBegin = MBBI == Begin && (!includeStart || pastStart);
+    bool MIIndexNotFound = MI && mi2iMap.find(MI) == mi2iMap.end();
----------------
arsenm wrote:

this can still use contains 

https://github.com/llvm/llvm-project/pull/127631


More information about the llvm-commits mailing list