Update InstEmitSimdArithmetic.cs
This commit is contained in:
parent
cfb7c165be
commit
7d0dfc5dc2
1 changed files with 4 additions and 4 deletions
|
@ -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));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue