From 91dfdf840ba3f1b26ca26e75ac5e3c8166c7d5cc Mon Sep 17 00:00:00 2001 From: shyouhei Date: Fri, 28 Dec 2018 03:42:11 +0000 Subject: [PATCH] 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 --- vm_insnhelper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)