Re: [Qemu-devel] [PATCH 16/19] target-alpha: fix wrong usage of float64_eq_quiet()

2011-04-13 Thread Peter Maydell
On 12 April 2011 22:59, Aurelien Jarno wrote: > On alpha, all NaN should trap during a comparison, not only sNaN. Fix > this by using float64_eq() instead of float64_eq_quiet(). The Compiler Writer's Guide disagrees with you: www.compaq.com/cpq-alphaserver/technology/literature/cmpwrgd.pdf page D

[Qemu-devel] [PATCH 16/19] target-alpha: fix wrong usage of float64_eq_quiet()

2011-04-12 Thread Aurelien Jarno
On alpha, all NaN should trap during a comparison, not only sNaN. Fix this by using float64_eq() instead of float64_eq_quiet(). Signed-off-by: Aurelien Jarno (cherry picked from commit 64990e0735007f75fe03123c1339366bcb496268) --- target-alpha/op_helper.c |5 +++-- 1 files changed, 3 inserti