mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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
This commit is contained in:
parent
818eb53407
commit
6a87d5161f
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue