Update AInstEmitSimdArithmetic.cs

This commit is contained in:
LDj3SNuD 2018-10-05 00:28:03 +02:00 committed by GitHub
parent 68c5199860
commit 3548bd65b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -749,6 +749,14 @@ namespace ChocolArm64.Instruction
}
}
public static void Frecpx_S(AILEmitterCtx Context)
{
EmitScalarUnaryOpF(Context, () =>
{
EmitSoftFloatCall(Context, nameof(ASoftFloat_32.FPRecpX));
});
}
public static void Frinta_S(AILEmitterCtx Context)
{
AOpCodeSimd Op = (AOpCodeSimd)Context.CurrOp;