From: Ian Lance Taylor Date: Fri, 8 Jul 2005 18:46:23 +0000 (+0000) Subject: * sim-fpu.c (sim_fpu_abs): Always clear the sign bit. X-Git-Tag: gdb-csl-arm-20051020-branchpoint~782 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=efd3631498cf717a4c28b0a4ad73f33d3cb66a28;p=thirdparty%2Fbinutils-gdb.git * sim-fpu.c (sim_fpu_abs): Always clear the sign bit. --- diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index c2ef9e0a8df..54303c46782 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,5 +1,7 @@ 2005-07-08 Ian Lance Taylor + * sim-fpu.c (sim_fpu_abs): Always clear the sign bit. + * sim-fpu.c (pack_fpu): If SIM_QUIET_NAN_NEGATED is defined, use a different fraction for a quiet NaN. (unpack_fpu): Likewise. diff --git a/sim/common/sim-fpu.c b/sim/common/sim-fpu.c index c9678bdc093..d7d86002d9d 100644 --- a/sim/common/sim-fpu.c +++ b/sim/common/sim-fpu.c @@ -1744,19 +1744,13 @@ INLINE_SIM_FPU (int) sim_fpu_abs (sim_fpu *f, const sim_fpu *r) { + *f = *r; + f->sign = 0; if (sim_fpu_is_snan (r)) { - *f = *r; f->class = sim_fpu_class_qnan; return sim_fpu_status_invalid_snan; } - if (sim_fpu_is_qnan (r)) - { - *f = *r; - return 0; - } - *f = *r; - f->sign = 0; return 0; }