diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-01-18 10:20:05 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-01-18 10:20:05 -0800 |
commit | 04ef5fd846cc43c3b97e5dee9ab102e2e2740608 (patch) | |
tree | 8f0cbfb1619af80a478ea82fa69a5c1433e9a36c /arith.c | |
parent | 22a3cad47355ebbb6aef86b503d98368e8110730 (diff) | |
download | txr-04ef5fd846cc43c3b97e5dee9ab102e2e2740608.tar.gz txr-04ef5fd846cc43c3b97e5dee9ab102e2e2740608.tar.bz2 txr-04ef5fd846cc43c3b97e5dee9ab102e2e2740608.zip |
int-flo: fix always-false test.
* arith.c (int_flo): Fix reversed inequality tests which
cause the test to be always false. This always false test
prevents use of the faster code path for converting
floating-point point values that are in range of the cptr
type.
Diffstat (limited to 'arith.c')
-rw-r--r-- | arith.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2362,7 +2362,7 @@ val int_flo(val f) val self = lit("int-flo"); double d = c_flo(f, self); - if (d >= INT_PTR_MAX && d <= INT_PTR_MIN - 1) { + if (d >= INT_PTR_MIN - 1 && d <= INT_PTR_MAX) { cnum n = d; if (n < NUM_MIN || n > NUM_MAX) return bignum(n); |