зеркало из https://github.com/github/ruby.git
mjit.h: avoid signed pointer comparisons (fix for 32-bit)
ptrdiff_t is a signed type, use uintptr_t instead for unsigned comparisons. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63844 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
1b812422fb
Коммит
8d004ee5fb
2
mjit.h
2
mjit.h
|
@ -103,7 +103,7 @@ mjit_exec(rb_execution_context_t *ec)
|
|||
total_calls = ++body->total_calls;
|
||||
|
||||
func = body->jit_func;
|
||||
if (UNLIKELY((ptrdiff_t)func <= (ptrdiff_t)LAST_JIT_ISEQ_FUNC)) {
|
||||
if (UNLIKELY((uintptr_t)func <= (uintptr_t)LAST_JIT_ISEQ_FUNC)) {
|
||||
switch ((enum rb_mjit_iseq_func)func) {
|
||||
case NOT_ADDED_JIT_ISEQ_FUNC:
|
||||
if (total_calls == mjit_opts.min_calls && mjit_target_iseq_p(body)) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче