correct function according to the new changes

This commit is contained in:
greggameplayer 2018-08-08 05:05:04 +02:00 committed by GitHub
parent 9b5a7291e7
commit d7263d0574
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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));
}