diff options
author | Dan Gohman <gohman@apple.com> | 2009-09-21 15:18:33 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-09-21 15:18:33 +0000 |
commit | a3c45bda22e2aa72e36da469f65e15e9c5d6b20b (patch) | |
tree | f08d7d97ffcc1dd92062f6210dca9443b6169bb5 /llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp | |
parent | 2c7e72cf42fd6cc2f5e0fef2c3b435cd14167b85 (diff) | |
download | bcm5719-llvm-a3c45bda22e2aa72e36da469f65e15e9c5d6b20b.tar.gz bcm5719-llvm-a3c45bda22e2aa72e36da469f65e15e9c5d6b20b.zip |
Fix this assertion string to mention subreg_to_reg.
llvm-svn: 82455
Diffstat (limited to 'llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp b/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp index 5b3b6a907f1..bbb742678fb 100644 --- a/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp +++ b/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp @@ -1296,8 +1296,8 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) { if (SrcSubIdx && SrcSubIdx != DstSubIdx) { // r1025 = INSERT_SUBREG r1025, r1024<2>, 2 Then r1024 has already been // coalesced to a larger register so the subreg indices cancel out. - DEBUG(errs() << "\tSource of insert_subreg is already coalesced " - << "to another register.\n"); + DEBUG(errs() << "\tSource of insert_subreg or subreg_to_reg is already " + "coalesced to another register.\n"); return false; // Not coalescable. } } else if (!tii_->isMoveInstr(*CopyMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx)){ |