summaryrefslogtreecommitdiff
path: root/vm_insnhelper.c
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-28 03:42:11 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-28 03:42:11 +0000
commit91dfdf840ba3f1b26ca26e75ac5e3c8166c7d5cc (patch)
tree260720bc188a5b9cd86b20c91edb8dadf0e5df04 /vm_insnhelper.c
parentda8830e3de84717ca5dbb659b60dc94557f7258c (diff)
vm_insnhelper.c: USE_FLONUM is always defined
This changeset should fix the 32bit failures. See also: https://travis-ci.org/ruby/ruby/jobs/472855470 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66601 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_insnhelper.c')
-rw-r--r--vm_insnhelper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index 4a6d7dc9d6..cb3236b1bc 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -1406,7 +1406,7 @@ FIXNUM_2_P(VALUE a, VALUE b)
static bool
FLONUM_2_P(VALUE a, VALUE b)
{
-#ifdef USE_FLONUM
+#if USE_FLONUM
/* FLONUM_P(a) && FLONUM_P(b)
* == ((a & 3) == 2) && ((b & 3) == 2)
* == ! ((a ^ 2) | (b ^ 2) & 3)