mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
HexagonCopyToCombine.cpp: Silence two warnings, -Wunused-variable, with -Asserts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154759 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8c67cf44c5
commit
8a81df1b7f
@ -213,6 +213,7 @@ bool HexagonCopyToCombine::isSafeToMoveTogether(MachineInstr *I1,
|
||||
if (KillingInstr) {
|
||||
bool Added = KillingInstr->addRegisterKilled(KilledOperand, TRI, true);
|
||||
assert(Added && "Must successfully update kill flag");
|
||||
(void)Added;
|
||||
removeKillInfo(I2, KilledOperand);
|
||||
}
|
||||
DoInsertAtI1 = true;
|
||||
@ -268,6 +269,7 @@ bool HexagonCopyToCombine::isSafeToMoveTogether(MachineInstr *I1,
|
||||
// the new COMBINE instruction.
|
||||
bool Added = I1->addRegisterKilled(KilledOperand, TRI);
|
||||
assert(Added && "Must successfully update kill flag");
|
||||
(void)Added;
|
||||
}
|
||||
DoInsertAtI1 = false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user