]> git.gag.com Git - fw/sdcc/blobdiff - device/lib/_fsneq.c
fixed bug #490955
[fw/sdcc] / device / lib / _fsneq.c
index 1d23ed38dc736144b6d5d8d72d5567ba41f276a6..cf397fb14739b0b93f05731f6cb41e5f67da9a88 100644 (file)
@@ -32,11 +32,14 @@ char __fsneq (float a1, float a2)
   fl1.f = a1;
   fl2.f = a2;
 
+#if 0
   if (fl1.l<0 && fl2.l<0)
     {
       fl1.l ^= SIGNBIT;
       fl2.l ^= SIGNBIT;
     }
+#endif
+
   if (fl1.l == fl2.l)
     return (0);
   return (1);