(REAL_VALUES_LESS): True if return value of ereal_cmp is -1.
authorRichard Stallman <rms@gnu.org>
Sun, 9 May 1993 22:13:58 +0000 (22:13 +0000)
committerRichard Stallman <rms@gnu.org>
Sun, 9 May 1993 22:13:58 +0000 (22:13 +0000)
From-SVN: r4402

gcc/real.h

index 527c205e077338a495a23904d4c873dec8fa091d..b9466194ed29a93e2b36f7550b0277f43f633ee6 100644 (file)
@@ -98,7 +98,7 @@ REAL_VALUE_TYPE ereal_negate (), ereal_truncate ();
 
 #define REAL_VALUES_EQUAL(x, y) (ereal_cmp ((x), (y)) == 0)
 /* true if x < y : */
-#define REAL_VALUES_LESS(x, y) (ereal_cmp ((x), (y)) < 0)
+#define REAL_VALUES_LESS(x, y) (ereal_cmp ((x), (y)) == -1)
 #define REAL_VALUE_LDEXP(x, n) ereal_ldexp (x, n)
 
 /* These return REAL_VALUE_TYPE: */