[llvm] [CodeGen] Preserved additional analyses in StackSlotColoring pass. (PR #93779)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 10 00:41:00 PDT 2024
================
@@ -496,8 +506,12 @@ bool StackSlotColoring::RemoveDeadStores(MachineBasicBlock* MBB) {
++I;
}
- for (MachineInstr *MI : toErase)
+ for (MachineInstr *MI : toErase) {
+ if (Indexes) {
----------------
arsenm wrote:
Don't need braces
https://github.com/llvm/llvm-project/pull/93779
More information about the llvm-commits
mailing list