projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
49e3182
)
Disable this assert for now, it is firing on an llvm-gcc bootstrap. :(
author
Daniel Dunbar
<daniel@zuster.org>
Thu, 16 Jul 2009 23:02:46 +0000
(23:02 +0000)
committer
Daniel Dunbar
<daniel@zuster.org>
Thu, 16 Jul 2009 23:02:46 +0000
(23:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76123
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/VirtRegRewriter.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/VirtRegRewriter.cpp
b/lib/CodeGen/VirtRegRewriter.cpp
index 61ea80b3d9deeb7a81f2bb577c045f6f26842df9..2213c65f343b613dd93f02702fc79627d239da88 100644
(file)
--- 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);