forked from OSchip/llvm-project
Fix this assertion string to mention subreg_to_reg.
llvm-svn: 82455
This commit is contained in:
parent
2c7e72cf42
commit
a3c45bda22
|
@ -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)){
|
||||
|
|
Loading…
Reference in New Issue