From: Richard Stallman Date: Sun, 9 May 1993 22:13:58 +0000 (+0000) Subject: (REAL_VALUES_LESS): True if return value of ereal_cmp is -1. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=265b1bae81360b96a4794d6a13d47c6e9d9a563c;p=gcc.git (REAL_VALUES_LESS): True if return value of ereal_cmp is -1. From-SVN: r4402 --- diff --git a/gcc/real.h b/gcc/real.h index 527c205e077..b9466194ed2 100644 --- a/gcc/real.h +++ b/gcc/real.h @@ -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: */