Ignore catch_except_p for PC motion

We probably don't need to move it when an insn is leaf...
This commit is contained in:
Takashi Kokubun 2020-12-16 22:12:50 -08:00
Родитель a09c3c6fe1
Коммит 3b4d698e0b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 6FFC433B12EE23DD
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -7,7 +7,7 @@
%
% # JIT: Move pc for catch table on catch_except_p, and for #caller_locations and rb_profile_frames on !insn.always_leaf?
MAYBE_UNUSED(bool pc_moved_p) = false;
if (body->catch_except_p || <%= insn.always_leaf? ? 'FALSE' : 'TRUE' %>) {
if (<%= insn.always_leaf? ? 'false' : 'true' %>) {
fprintf(f, " reg_cfp->pc = original_body_iseq + %d;\n", next_pos); /* ADD_PC(INSN_ATTR(width)); */
pc_moved_p = true;
}