mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Fix my brain cramp by inverting the assertion condition.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76131 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
28ebfcf7de
commit
c1b46f91f5
@ -491,12 +491,10 @@ static void ReMaterialize(MachineBasicBlock &MBB,
|
||||
const TargetRegisterInfo *TRI,
|
||||
VirtRegMap &VRM) {
|
||||
MachineInstr *ReMatDefMI = VRM.getReMaterializedMI(Reg);
|
||||
#if 0
|
||||
#ifndef NDEBUG
|
||||
const TargetInstrDesc &TID = ReMatDefMI->getDesc();
|
||||
assert(TID.getNumDefs() != 1 &&
|
||||
assert(TID.getNumDefs() == 1 &&
|
||||
"Don't know how to remat instructions that define > 1 values!");
|
||||
#endif
|
||||
#endif
|
||||
TII->reMaterialize(MBB, MII, DestReg,
|
||||
ReMatDefMI->getOperand(0).getSubReg(), ReMatDefMI);
|
||||
|
Loading…
x
Reference in New Issue
Block a user