diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-08-05 18:56:30 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-08-05 18:56:30 -0300 |
| commit | 3cf1b6cf77424b2e3eb71035a7d1b2a3929061ce (patch) | |
| tree | 61e34dc7a264a6b5c97e42d9f68c6f3fbb029ffd /ChocolArm64/Instruction/ASoftFloat.cs | |
| parent | 221270db90300a084007d154867be89bb5fddedf (diff) | |
Fix silly copy/paste error on float variant of the FMINNM instruction
Diffstat (limited to 'ChocolArm64/Instruction/ASoftFloat.cs')
| -rw-r--r-- | ChocolArm64/Instruction/ASoftFloat.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ChocolArm64/Instruction/ASoftFloat.cs b/ChocolArm64/Instruction/ASoftFloat.cs index 8afa4002..e3f067ed 100644 --- a/ChocolArm64/Instruction/ASoftFloat.cs +++ b/ChocolArm64/Instruction/ASoftFloat.cs @@ -372,7 +372,7 @@ namespace ChocolArm64.Instruction op2 = float.PositiveInfinity; } - return Max(op1, op2); + return Min(op1, op2); } public static double MinNum(double op1, double op2) |
