From 6a87d5161f136a9e008c034dfe0684cf3455581c Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 9 Jan 2018 17:09:23 +0000 Subject: [PATCH] use binary search for insns_info. * vm_core.h (VM_INSN_INFO_TABLE_IMPL): use 1 (binary search) because 2 (succinct bitvector) doesn't work on Rasbian (x86_64). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61748 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm_core.h b/vm_core.h index 176ec9d333..5c6f6fb689 100644 --- a/vm_core.h +++ b/vm_core.h @@ -63,7 +63,7 @@ * 2: succinct bitvector */ #ifndef VM_INSN_INFO_TABLE_IMPL -# define VM_INSN_INFO_TABLE_IMPL 2 +# define VM_INSN_INFO_TABLE_IMPL 1 #endif #include "ruby/ruby.h"