Update OpCodeTable.cs

This commit is contained in:
LDj3SNuD 2018-10-31 23:17:40 +01:00 committed by GitHub
parent 2a5558a32c
commit ed9deba9d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -544,7 +544,7 @@ namespace ChocolArm64
foreach (var inst in _allInstA64)
{
int mask = ToFastLookupIndex(inst.Mask);
int mask = ToFastLookupIndex(inst.Mask);
int value = ToFastLookupIndex(inst.Value);
for (int i = 0; i < _fastLookupSize; i++)
@ -665,8 +665,8 @@ namespace ChocolArm64
}
private static void InsertInst(
int xMask,
int value,
int xMask,
int value,
Inst inst,
ExecutionMode mode)
{