aboutsummaryrefslogtreecommitdiff
path: root/gcc/real.h
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-05-09 22:13:58 +0000
committerRichard Stallman <rms@gnu.org>1993-05-09 22:13:58 +0000
commit265b1bae81360b96a4794d6a13d47c6e9d9a563c (patch)
tree2252066ec449e88e46ee57b5f7286a4e2b73a718 /gcc/real.h
parent66b6d60bac72ce00d521c3828d13f8ce23d17c90 (diff)
downloadgcc-265b1bae81360b96a4794d6a13d47c6e9d9a563c.zip
gcc-265b1bae81360b96a4794d6a13d47c6e9d9a563c.tar.gz
gcc-265b1bae81360b96a4794d6a13d47c6e9d9a563c.tar.bz2
(REAL_VALUES_LESS): True if return value of ereal_cmp is -1.
From-SVN: r4402
Diffstat (limited to 'gcc/real.h')
-rw-r--r--gcc/real.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/real.h b/gcc/real.h
index 527c205..b946619 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: */