From 893274a1adeef980882378e3f4c432ddf46a40b0 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 18 Apr 2018 21:59:39 +0200 Subject: [PATCH] fix fmin/fmax PR 3 --- ChocolArm64/Instruction/ASoftFallback.cs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/ChocolArm64/Instruction/ASoftFallback.cs b/ChocolArm64/Instruction/ASoftFallback.cs index 54835c4096..c08f253e96 100644 --- a/ChocolArm64/Instruction/ASoftFallback.cs +++ b/ChocolArm64/Instruction/ASoftFallback.cs @@ -296,12 +296,6 @@ namespace ChocolArm64.Instruction public static float MinF(float val1, float val2) { - /*if ((val1 == 0.0 && val2 >= 0.0) || (val1 >= 0.0 && val2 == 0.0)) - { - if (BitConverter.SingleToInt32Bits(val1) < 0 || BitConverter.SingleToInt32Bits(val2) < 0) - return -0.0f; - }*/ - if (val1 == 0.0 && val2 == 0.0) { if (BitConverter.SingleToInt32Bits(val1) < 0 || BitConverter.SingleToInt32Bits(val2) < 0) @@ -321,12 +315,6 @@ namespace ChocolArm64.Instruction public static double Min(double val1, double val2) { - /*if ((val1 == 0.0 && val2 >= 0.0) || (val1 >= 0.0 && val2 == 0.0)) - { - if (BitConverter.DoubleToInt64Bits(val1) < 0 || BitConverter.DoubleToInt64Bits(val2) < 0) - return -0.0; - }*/ - if (val1 == 0.0 && val2 == 0.0) { if (BitConverter.DoubleToInt64Bits(val1) < 0 || BitConverter.DoubleToInt64Bits(val2) < 0)