From: Nick Clifton Date: Wed, 27 Apr 2016 11:37:11 +0000 (+0100) Subject: Fix a typo in the check for SNANs in the RX simulator. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7881f69ee902b06433f071fd8cbdee1b401c9b76;p=binutils-gdb.git Fix a typo in the check for SNANs in the RX simulator. PR target/20000 * fpu.c (check_exceptions): Fix typo checking for signalling NANs. --- diff --git a/sim/rx/ChangeLog b/sim/rx/ChangeLog index 7049d948b7a..104578cf361 100644 --- a/sim/rx/ChangeLog +++ b/sim/rx/ChangeLog @@ -1,3 +1,9 @@ +2016-04-27 Nick Clifton + + PR target/20000 + * fpu.c (check_exceptions): Fix typo checking for signalling + NANs. + 2016-01-10 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/rx/fpu.c b/sim/rx/fpu.c index d3f4bdbf694..aa7fd2da051 100644 --- a/sim/rx/fpu.c +++ b/sim/rx/fpu.c @@ -433,7 +433,7 @@ check_exceptions (FP_Parts *a, FP_Parts *b, fp_t *c, FP_RAISE (V); if (a->type == FP_SNAN) *c = a->orig_value | 0x00400000; - else if (a->type == FP_SNAN) + else if (b->type == FP_SNAN) *c = b->orig_value | 0x00400000; else *c = 0x7fc00000;