We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8965795 commit 76b54dfCopy full SHA for 76b54df
llvm/lib/CodeGen/StackSlotColoring.cpp
@@ -472,8 +472,8 @@ bool StackSlotColoring::RemoveDeadStores(MachineBasicBlock* MBB) {
472
MachineBasicBlock::iterator NextMI = std::next(I);
473
MachineBasicBlock::iterator ProbableLoadMI = I;
474
475
- unsigned LoadReg = 0;
476
- unsigned StoreReg = 0;
+ Register LoadReg;
+ Register StoreReg;
477
unsigned LoadSize = 0;
478
unsigned StoreSize = 0;
479
if (!(LoadReg = TII->isLoadFromStackSlot(*I, FirstSS, LoadSize)))
0 commit comments