Implement Frsqrte_V

This commit is contained in:
MerryMage 2018-04-05 18:38:19 +01:00
parent 2cacb73359
commit 5b5a497ef5

View file

@ -484,6 +484,14 @@ namespace ChocolArm64.Instruction
});
}
public static void Frsqrte_V(AILEmitterCtx Context)
{
EmitVectorUnaryOpF(Context, () =>
{
EmitUnarySoftFloatCall(Context, nameof(ASoftFloat.InvSqrtEstimate));
});
}
public static void Fsqrt_S(AILEmitterCtx Context)
{
EmitScalarUnaryOpF(Context, () =>