mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 22:24:07 +00:00
Fix inverted preprocessor conditional.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76111 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -491,7 +491,7 @@ static void ReMaterialize(MachineBasicBlock &MBB,
|
|||||||
const TargetRegisterInfo *TRI,
|
const TargetRegisterInfo *TRI,
|
||||||
VirtRegMap &VRM) {
|
VirtRegMap &VRM) {
|
||||||
MachineInstr *ReMatDefMI = VRM.getReMaterializedMI(Reg);
|
MachineInstr *ReMatDefMI = VRM.getReMaterializedMI(Reg);
|
||||||
#ifdef NDEBUG
|
#ifndef NDEBUG
|
||||||
const TargetInstrDesc &TID = ReMatDefMI->getDesc();
|
const TargetInstrDesc &TID = ReMatDefMI->getDesc();
|
||||||
assert(TID.getNumDefs() != 1 &&
|
assert(TID.getNumDefs() != 1 &&
|
||||||
"Don't know how to remat instructions that define > 1 values!");
|
"Don't know how to remat instructions that define > 1 values!");
|
||||||
|
Reference in New Issue
Block a user