Update InstEmitSimdArithmetic.cs

This commit is contained in:
LDj3SNuD 2018-12-18 00:54:47 +01:00 committed by GitHub
commit 7d0dfc5dc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1146,7 +1146,7 @@ namespace ChocolArm64.Instructions
{ {
EmitScalarUnaryOpF(context, () => EmitScalarUnaryOpF(context, () =>
{ {
EmitUnarySoftFloatCall(context, nameof(SoftFloat.RecipEstimate)); EmitSoftFloatCall(context, nameof(SoftFloat32.FPRecipEstimate));
}); });
} }
@ -1154,7 +1154,7 @@ namespace ChocolArm64.Instructions
{ {
EmitVectorUnaryOpF(context, () => EmitVectorUnaryOpF(context, () =>
{ {
EmitUnarySoftFloatCall(context, nameof(SoftFloat.RecipEstimate)); EmitSoftFloatCall(context, nameof(SoftFloat32.FPRecipEstimate));
}); });
} }
@ -1443,7 +1443,7 @@ namespace ChocolArm64.Instructions
{ {
EmitScalarUnaryOpF(context, () => EmitScalarUnaryOpF(context, () =>
{ {
EmitUnarySoftFloatCall(context, nameof(SoftFloat.InvSqrtEstimate)); EmitSoftFloatCall(context, nameof(SoftFloat32.FPRSqrtEstimate));
}); });
} }
@ -1451,7 +1451,7 @@ namespace ChocolArm64.Instructions
{ {
EmitVectorUnaryOpF(context, () => EmitVectorUnaryOpF(context, () =>
{ {
EmitUnarySoftFloatCall(context, nameof(SoftFloat.InvSqrtEstimate)); EmitSoftFloatCall(context, nameof(SoftFloat32.FPRSqrtEstimate));
}); });
} }