Fix wrong method call on Clz_V

This commit is contained in:
gdkchan 2019-06-12 09:28:00 -03:00
commit e8a65ad4a7

View file

@ -126,7 +126,7 @@ namespace ARMeilleure.Instructions
} }
else else
{ {
MethodInfo info = typeof(SoftFallback).GetMethod(nameof(SoftFallback.CountLeadingSigns)); MethodInfo info = typeof(SoftFallback).GetMethod(nameof(SoftFallback.CountLeadingZeros));
de = context.Call(info, ne, Const(eSize)); de = context.Call(info, ne, Const(eSize));
} }