Re: [PATCH v17 02/14] util/cutils: Use qemu_strtold_finite to parse size

2019-11-26 Thread Markus Armbruster
Tao Xu writes: > On 11/25/2019 2:56 PM, Markus Armbruster wrote: >> Tao Xu writes: >> >>> Support full 64bit precision, modify related test cases. >> >> That's not true in general: long double need not be any wider than >> double. >> >> It might be true on the host machines we support, but I don

Re: [PATCH v17 02/14] util/cutils: Use qemu_strtold_finite to parse size

2019-11-26 Thread Tao Xu
On 11/25/2019 2:56 PM, Markus Armbruster wrote: Tao Xu writes: Support full 64bit precision, modify related test cases. That's not true in general: long double need not be any wider than double. It might be true on the host machines we support, but I don't know. If we decide to rely on it,

Re: [PATCH v17 02/14] util/cutils: Use qemu_strtold_finite to parse size

2019-11-24 Thread Markus Armbruster
Tao Xu writes: > Support full 64bit precision, modify related test cases. That's not true in general: long double need not be any wider than double. It might be true on the host machines we support, but I don't know. If we decide to rely on it, we better make the build fail when the host machi