summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-09 17:09:23 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-09 17:09:23 +0000
commit6a87d5161f136a9e008c034dfe0684cf3455581c (patch)
tree5f77ab1ef62fc2f0cf1d055c7d95f9b6a05a922e /vm_core.h
parent818eb53407b16eebcc177829389316d88be4b77f (diff)
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
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h2
1 files changed, 1 insertions, 1 deletions
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"