From: Daniel Dunbar Date: Thu, 16 Jul 2009 23:02:46 +0000 (+0000) Subject: Disable this assert for now, it is firing on an llvm-gcc bootstrap. :( X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2df5e554e262c9c2b31b401387fee8678d16cec2;p=oota-llvm.git Disable this assert for now, it is firing on an llvm-gcc bootstrap. :( git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76123 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/VirtRegRewriter.cpp b/lib/CodeGen/VirtRegRewriter.cpp index 61ea80b3d9d..2213c65f343 100644 --- a/lib/CodeGen/VirtRegRewriter.cpp +++ b/lib/CodeGen/VirtRegRewriter.cpp @@ -491,10 +491,12 @@ 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 && "Don't know how to remat instructions that define > 1 values!"); +#endif #endif TII->reMaterialize(MBB, MII, DestReg, ReMatDefMI->getOperand(0).getSubReg(), ReMatDefMI);