From d7263d0574ba3450e7bf18f9e3babc12dd8f6105 Mon Sep 17 00:00:00 2001 From: greggameplayer <33609333+greggameplayer@users.noreply.github.com> Date: Wed, 8 Aug 2018 05:05:04 +0200 Subject: [PATCH] correct function according to the new changes --- ChocolArm64/Instruction/AInstEmitSimdArithmetic.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ChocolArm64/Instruction/AInstEmitSimdArithmetic.cs b/ChocolArm64/Instruction/AInstEmitSimdArithmetic.cs index 0d9660a663..bf455f3653 100644 --- a/ChocolArm64/Instruction/AInstEmitSimdArithmetic.cs +++ b/ChocolArm64/Instruction/AInstEmitSimdArithmetic.cs @@ -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)); }