Merge pull request #2631 from lioncash/regcache
JitRegCache: Get rid of an unnecessary cast
This commit is contained in:
commit
9b9bab2179
|
@ -137,7 +137,7 @@ X64Reg RegCache::GetFreeXReg()
|
||||||
X64Reg xr = (X64Reg)aOrder[i];
|
X64Reg xr = (X64Reg)aOrder[i];
|
||||||
if (!xregs[xr].locked && xregs[xr].free)
|
if (!xregs[xr].locked && xregs[xr].free)
|
||||||
{
|
{
|
||||||
return (X64Reg)xr;
|
return xr;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue