Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #711 from lioncash/cast
Core: Get rid of a cast in JitRegCache
  • Loading branch information
delroth committed Aug 2, 2014
2 parents 6c923b7 + 4e2f487 commit e0b6f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/PowerPC/Jit64/JitRegCache.cpp
Expand Up @@ -125,7 +125,7 @@ void RegCache::FlushR(X64Reg reg)

int RegCache::SanityCheck() const
{
for (int i = 0; i < (int)regs.size(); i++)
for (size_t i = 0; i < regs.size(); i++)
{
if (regs[i].away)
{
Expand Down

0 comments on commit e0b6f8c

Please sign in to comment.