* config/fp-bit.c (_unord_f2): Fix typo.
authorcpopetz <cpopetz@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 25 Jan 2000 17:25:26 +0000 (17:25 +0000)
committercpopetz <cpopetz@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 25 Jan 2000 17:25:26 +0000 (17:25 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31613 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 8a0c439..9388f69 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 fc496c0..8e9df1c 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