This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch for 20000124 fp-bit.c rs6000-ibm-aix build failure


egcs-20000124 snapshot build failure on rs6000-ibm-aix4.2.0.0

_unord_sf
fp-bit.c: In function `__unordsf2':
fp-bit.c:1392: parse error before `;'
make[4]: *** [libgcc2.a] Error 1
make[4]: Leaving directory `/devel/tmp/egcs-20000124.obj/gcc'
make[3]: *** [stmp-multilib-sub] Error 2

The patch below fixes the syntax error - unsure of expected semantics.

--- gcc/config/fp-bit.c.orig	Wed Jan 26 14:35:11 2000
+++ gcc/config/fp-bit.c	Wed Jan 26 14:34:40 2000
@@ -1388,7 +1388,7 @@ _unord_f2 (FLO_type arg_a, FLO_type arg_
   unpack_d (&au, &a);
   unpack_d (&bu, &b);
 
-  return (isnan (&a) || isnan (&b);
+  return (isnan (&a) || isnan (&b));
 }
 #endif
 

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]