Rename ilBlock -> block (local)
This commit is contained in:
parent
f2e0b3800e
commit
a5f483c0a7
1 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue