From: Clinton Popetz Date: Tue, 25 Jan 2000 17:25:26 +0000 (+0000) Subject: * config/fp-bit.c (_unord_f2): Fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8c135f8458c75189290ee4e98b66e51cac737fb2;p=gcc.git * config/fp-bit.c (_unord_f2): Fix typo. From-SVN: r31613 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8a0c4392d0d..9388f69b918 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-01-25 Clinton Popetz + + * config/fp-bit.c (_unord_f2): Fix typo. + 2000-01-25 Zack Weinberg * c-common.c, c-decl.c, c-lang.c, c-lex.c, c-parse.in, c-pragma.c, diff --git a/gcc/config/fp-bit.c b/gcc/config/fp-bit.c index fc496c0f059..8e9df1c848e 100644 --- a/gcc/config/fp-bit.c +++ b/gcc/config/fp-bit.c @@ -1388,7 +1388,7 @@ _unord_f2 (FLO_type arg_a, FLO_type arg_b) unpack_d (&au, &a); unpack_d (&bu, &b); - return (isnan (&a) || isnan (&b); + return (isnan (&a) || isnan (&b)); } #endif