Re: [Qemu-devel] [PATCH v3 04/13] fpu: use min/max values from stdint.h for integral overflow

2019-08-15 Thread Alex Bennée
Aleksandar Markovic writes: > 13.08.2019. 14.52, "Alex Bennée" је написао/ла: >> >> Remove some more use of LIT64 while making the meaning more clear. We >> also avoid the need of casts as the results by definition fit into the >> return type. >> >> Signed-off-by: Alex Bennée >> --- >>

Re: [Qemu-devel] [PATCH v3 04/13] fpu: use min/max values from stdint.h for integral overflow

2019-08-15 Thread Aleksandar Markovic
13.08.2019. 14.52, "Alex Bennée" је написао/ла: > > Remove some more use of LIT64 while making the meaning more clear. We > also avoid the need of casts as the results by definition fit into the > return type. > > Signed-off-by: Alex Bennée > --- > fpu/softfloat.c | 30

Re: [Qemu-devel] [PATCH v3 04/13] fpu: use min/max values from stdint.h for integral overflow

2019-08-13 Thread Richard Henderson
On 8/13/19 1:49 PM, Alex Bennée wrote: > Remove some more use of LIT64 while making the meaning more clear. We > also avoid the need of casts as the results by definition fit into the > return type. > > Signed-off-by: Alex Bennée > --- > fpu/softfloat.c | 30 ++ > 1

[Qemu-devel] [PATCH v3 04/13] fpu: use min/max values from stdint.h for integral overflow

2019-08-13 Thread Alex Bennée
Remove some more use of LIT64 while making the meaning more clear. We also avoid the need of casts as the results by definition fit into the return type. Signed-off-by: Alex Bennée --- fpu/softfloat.c | 30 ++ 1 file changed, 14 insertions(+), 16 deletions(-) diff