Rename ilBlock -> block (local)

This commit is contained in:
gdkchan 2019-04-17 20:01:27 -03:00
parent f2e0b3800e
commit a5f483c0a7

View file

@ -235,14 +235,14 @@ namespace ChocolArm64.Translation
private static int GetOpsCount(BasicBlock[] blocks)
{
int ilOpCount = 0;
int opCount = 0;
foreach (BasicBlock ilBlock in blocks)
foreach (BasicBlock block in blocks)
{
ilOpCount += ilBlock.Count;
opCount += block.Count;
}
return ilOpCount;
return opCount;
}
private void ForceAheadOfTimeCompilation(TranslatedSub subroutine)