1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Fixed misspelling and broke a line that was wrapping.

llvm-svn: 6391
This commit is contained in:
Misha Brukman 2003-05-29 05:00:14 +00:00
parent 43b9b22635
commit ef428e8dca

View File

@ -178,7 +178,7 @@ public:
// a regId in a register class to a common Id, or vice versa,
// we use the folloing two methods.
//
// Thsi method converts from class reg. number to unified register number.
// This method converts from class reg. number to unified register number.
int getUnifiedRegNum(unsigned regClassID, int reg) const {
if (reg == getInvalidRegNum()) { return getInvalidRegNum(); }
assert(regClassID < getNumOfRegClasses() && "Invalid register class");
@ -195,7 +195,8 @@ public:
int totalRegs = 0, rcid = 0, NC = getNumOfRegClasses();
while (rcid < NC &&
uRegNum >= totalRegs + (int) MachineRegClassArr[rcid]->getNumOfAllRegs()) {
uRegNum>= totalRegs+(int)MachineRegClassArr[rcid]->getNumOfAllRegs())
{
totalRegs += MachineRegClassArr[rcid]->getNumOfAllRegs();
rcid++;
}