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:
3cd0aa3
)
Add an assertion to verify that a copy was actually emitted.
author
Dan Gohman
<gohman@apple.com>
Mon, 13 Apr 2009 15:16:56 +0000
(15:16 +0000)
committer
Dan Gohman
<gohman@apple.com>
Mon, 13 Apr 2009 15:16:56 +0000
(15:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68953
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/TwoAddressInstructionPass.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/TwoAddressInstructionPass.cpp
b/lib/CodeGen/TwoAddressInstructionPass.cpp
index 8aa866ea29b026fb059a8c7d7db39e9e65fcd79a..20770a17ef2fdba1ade298d85a1e8593bd9d2471 100644
(file)
--- a/
lib/CodeGen/TwoAddressInstructionPass.cpp
+++ b/
lib/CodeGen/TwoAddressInstructionPass.cpp
@@
-857,7
+857,8
@@
bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &MF) {
ReMatRegs.set(regB);
++NumReMats;
} else {
- TII->copyRegToReg(*mbbi, mi, regA, regB, rc, rc);
+ bool Emitted = TII->copyRegToReg(*mbbi, mi, regA, regB, rc, rc);
+ assert(Emitted && "Unable to issue a copy instruction!\n");
}
MachineBasicBlock::iterator prevMI = prior(mi);