Implement Fabs_V (#146)
This commit is contained in:
parent
9176180abb
commit
46dc89f8dd
2 changed files with 9 additions and 0 deletions
|
@ -309,6 +309,14 @@ namespace ChocolArm64.Instruction
|
|||
});
|
||||
}
|
||||
|
||||
public static void Fabs_V(AILEmitterCtx Context)
|
||||
{
|
||||
EmitVectorUnaryOpF(Context, () =>
|
||||
{
|
||||
EmitUnaryMathCall(Context, nameof(Math.Abs));
|
||||
});
|
||||
}
|
||||
|
||||
public static void Fadd_S(AILEmitterCtx Context)
|
||||
{
|
||||
if (AOptimizations.UseSse2)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue