Fix an obvious type.

llvm-svn: 69918
This commit is contained in:
Evan Cheng 2009-04-23 20:18:13 +00:00
parent d6ed5b7376
commit 967b04d9bc
1 changed files with 1 additions and 1 deletions

View File

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