mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
merge revision: 61746
`signed` is required for Rasbian (x86_64). * tool/ruby_vm/views/_insn_stack_increase.erb: specify `signed` explicitly for systems which use `unsigned` for `char` type. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61792 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4b190c4852
commit
84012cd19f
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ insn_stack_increase_dispatch(enum ruby_vminsn_type insn, const VALUE *opes)
|
|||
}.join(', ') -%>,
|
||||
% end
|
||||
};
|
||||
char c = t[insn];
|
||||
signed char c = t[insn];
|
||||
|
||||
ASSERT_VM_INSTRUCTION_SIZE(t);
|
||||
if (c != -127) {
|
||||
|
|
Loading…
Reference in a new issue