Fix an obvious type.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69918 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2009-04-23 20:18:13 +00:00
parent e41bc94bb1
commit c2cee14a8c

View File

@ -1342,7 +1342,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
return false;
}
Limit = allocatableRCRegs_[DstRC].count();
} else if (!SrcIsPhys && !SrcIsPhys) {
} else if (!SrcIsPhys && !DstIsPhys) {
unsigned SrcSize = SrcRC->getSize();
unsigned DstSize = DstRC->getSize();
if (SrcSize < DstSize)