Fix a few code style remarks.

Removes some casting of size_t to int.
This commit is contained in:
Ryan Houdek
2014-06-10 02:52:15 -05:00
parent b4ec70f0ac
commit c2b6a41e6b

View File

@ -22,7 +22,7 @@ void RegCache::Start()
xreg.locked = false; xreg.locked = false;
xreg.ppcReg = -1; xreg.ppcReg = -1;
} }
for (int i = 0; i < (int)regs.size(); i++) for (size_t i = 0; i < regs.size(); i++)
{ {
regs[i].location = GetDefaultLocation(i); regs[i].location = GetDefaultLocation(i);
regs[i].away = false; regs[i].away = false;
@ -264,7 +264,7 @@ void RegCache::StoreFromRegister(int i, FlushMode mode)
{ {
X64Reg xr = RX(i); X64Reg xr = RX(i);
doStore = xregs[xr].dirty; doStore = xregs[xr].dirty;
if(mode == FLUSH_ALL) if (mode == FLUSH_ALL)
{ {
xregs[xr].free = true; xregs[xr].free = true;
xregs[xr].ppcReg = -1; xregs[xr].ppcReg = -1;
@ -279,7 +279,7 @@ void RegCache::StoreFromRegister(int i, FlushMode mode)
OpArg newLoc = GetDefaultLocation(i); OpArg newLoc = GetDefaultLocation(i);
if (doStore) if (doStore)
StoreRegister(i, newLoc); StoreRegister(i, newLoc);
if(mode == FLUSH_ALL) if (mode == FLUSH_ALL)
{ {
regs[i].location = newLoc; regs[i].location = newLoc;
regs[i].away = false; regs[i].away = false;
@ -313,17 +313,17 @@ void FPURegCache::StoreRegister(int preg, OpArg newLoc)
void RegCache::Flush(FlushMode mode) void RegCache::Flush(FlushMode mode)
{ {
for (int i = 0; i < (int)xregs.size(); i++) for (size_t i = 0; i < xregs.size(); i++)
{ {
if (xregs[i].locked) if (xregs[i].locked)
PanicAlert("Someone forgot to unlock X64 reg %i.", i); PanicAlert("Someone forgot to unlock X64 reg %zu.", i);
} }
for (int i = 0; i < (int)regs.size(); i++) for (size_t i = 0; i < regs.size(); i++)
{ {
if (regs[i].locked) if (regs[i].locked)
{ {
PanicAlert("Someone forgot to unlock PPC reg %i (X64 reg %i).", i, RX(i)); PanicAlert("Someone forgot to unlock PPC reg %zu (X64 reg %i).", i, RX(i));
} }
if (regs[i].away) if (regs[i].away)
{ {
@ -333,7 +333,7 @@ void RegCache::Flush(FlushMode mode)
} }
else else
{ {
_assert_msg_(DYNA_REC,0,"Jit64 - Flush unhandled case, reg %i PC: %08x", i, PC); _assert_msg_(DYNA_REC,0,"Jit64 - Flush unhandled case, reg %zu PC: %08x", i, PC);
} }
} }
} }