* config/fp-bit.c (_unord_f2): Fix typo.
authorClinton Popetz <cpopetz@cygnus.com>
Tue, 25 Jan 2000 17:25:26 +0000 (17:25 +0000)
committerClinton Popetz <cpopetz@gcc.gnu.org>
Tue, 25 Jan 2000 17:25:26 +0000 (12:25 -0500)
From-SVN: r31613

gcc/ChangeLog
gcc/config/fp-bit.c

index 8a0c4392d0d002dc1353c943e713ad71da036134..9388f69b9184fdfe74316edbcda699ab2677ac2d 100644 (file)
@@ -1,3 +1,7 @@
+2000-01-25  Clinton Popetz  <cpopetz@cygnus.com>
+
+       * config/fp-bit.c (_unord_f2): Fix typo.
+
 2000-01-25  Zack Weinberg  <zack@wolery.cumb.org>
 
        * c-common.c, c-decl.c, c-lang.c, c-lex.c, c-parse.in, c-pragma.c,
index fc496c0f0592da104e67a4cf4b7fa5fd4cb51d43..8e9df1c848e0a43362f1f2cd382024af8f7fcb15 100644 (file)
@@ -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