File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -1630,8 +1630,6 @@ MipsConstantIslands::fixupConditionalBr(ImmBranch &Br) {
1630
1630
}
1631
1631
1632
1632
void MipsConstantIslands::prescanForConstants () {
1633
- unsigned J = 0 ;
1634
- (void )J;
1635
1633
for (MachineBasicBlock &B : *MF) {
1636
1634
for (MachineBasicBlock::instr_iterator I = B.instr_begin (),
1637
1635
EB = B.instr_end ();
@@ -1640,8 +1638,7 @@ void MipsConstantIslands::prescanForConstants() {
1640
1638
case Mips::LwConstant32: {
1641
1639
PrescannedForConstants = true ;
1642
1640
LLVM_DEBUG (dbgs () << " constant island constant " << *I << " \n " );
1643
- J = I->getNumOperands ();
1644
- LLVM_DEBUG (dbgs () << " num operands " << J << " \n " );
1641
+ LLVM_DEBUG (dbgs () << " num operands " << I->getNumOperands () << " \n " );
1645
1642
MachineOperand& Literal = I->getOperand (1 );
1646
1643
if (Literal.isImm ()) {
1647
1644
int64_t V = Literal.getImm ();
You can’t perform that action at this time.
0 commit comments