JitRegCache: Get rid of an unnecessary cast

This commit is contained in:
Lioncash 2015-06-19 18:06:07 -04:00
parent c19903e0fe
commit 6ca6896b6e
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ X64Reg RegCache::GetFreeXReg()
X64Reg xr = (X64Reg)aOrder[i];
if (!xregs[xr].locked && xregs[xr].free)
{
return (X64Reg)xr;
return xr;
}
}