Re: [Qemu-devel] [PATCH v2] fix fdiv instruction

2018-07-01 Thread no-reply
Hi, This series seems to have some coding style problems. See output below for more information: Type: series Message-id: 20180630030606.17288-1-programmingk...@gmail.com Subject: [Qemu-devel] [PATCH v2] fix fdiv instruction === TEST SCRIPT BEGIN === #!/bin/bash BASE=base n=1 total=$(git log

Re: [Qemu-devel] [PATCH v2] fix fdiv instruction

2018-06-30 Thread Programmingkid
On Jun 30, 2018, at 11:43 AM, Richard Henderson wrote: > On 06/29/2018 08:06 PM, John Arbuckle wrote: >> When the fdiv instruction divides a finite number by zero, >> the result actually depends on the FPSCR[ZE] bit. If this >> bit is set, the return value is the value originally in >> the desti

Re: [Qemu-devel] [PATCH v2] fix fdiv instruction

2018-06-30 Thread Richard Henderson
On 06/29/2018 08:06 PM, John Arbuckle wrote: > When the fdiv instruction divides a finite number by zero, > the result actually depends on the FPSCR[ZE] bit. If this > bit is set, the return value is the value originally in > the destination register. If it is not set > the result should be either

[Qemu-devel] [PATCH v2] fix fdiv instruction

2018-06-29 Thread John Arbuckle
When the fdiv instruction divides a finite number by zero, the result actually depends on the FPSCR[ZE] bit. If this bit is set, the return value is the value originally in the destination register. If it is not set the result should be either positive or negative infinity. The sign of this result