From 07a6e98d48d4a85f18cc7977abe0f956b36f42cd Mon Sep 17 00:00:00 2001 From: Kaz Kylheku <kaz@kylheku.com> Date: Fri, 16 Sep 2022 19:54:26 -0700 Subject: nan-boxing: make default on 64 bit. * configure: automatically select NaN boxing on 64 bit platforms. --- configure | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'configure') diff --git a/configure b/configure index 51c11fa8..ca4e738b 100755 --- a/configure +++ b/configure @@ -1586,8 +1586,7 @@ fi if ! [ $nan_boxing_given ] ; then printf "Checking whether to use NaN boxing ... " - # too experimental: disabled - if false && [ $SIZEOF_PTR -eq 8 ] ; then + if [ $SIZEOF_PTR -eq 8 ] ; then nan_boxing=y printf "yes\n" else -- cgit v1.2.3