correct function according to the new changes
This commit is contained in:
parent
9b5a7291e7
commit
d7263d0574
1 changed files with 2 additions and 2 deletions
|
@ -340,7 +340,7 @@ namespace ChocolArm64.Instruction
|
|||
|
||||
public static void Fmaxp_V(AILEmitterCtx Context)
|
||||
{
|
||||
EmitVectorPairwiseFloat(Context, nameof(AVectorHelper.MaxF), nameof(AVectorHelper.Max));
|
||||
EmitVectorPairwiseFloat(Context, nameof(ASoftFloat.Max), nameof(ASoftFloat.Max));
|
||||
}
|
||||
|
||||
public static void Fmin_S(AILEmitterCtx Context)
|
||||
|
@ -361,7 +361,7 @@ namespace ChocolArm64.Instruction
|
|||
|
||||
public static void Fminp_V(AILEmitterCtx Context)
|
||||
{
|
||||
EmitVectorPairwiseFloat(Context, nameof(AVectorHelper.MinF), nameof(AVectorHelper.Min));
|
||||
EmitVectorPairwiseFloat(Context, nameof(ASoftFloat.Min), nameof(ASoftFloat.Min));
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue