Fix ARMv5 JIT improper handling of labels right after a constant pool.

This commit is contained in:
Zoltán Herczeg 2019-11-29 11:03:10 +00:00
parent f5286d8f56
commit 2632526c67
2 changed files with 4 additions and 0 deletions

View File

@ -6,6 +6,8 @@ Version 10.35
1. Use PCRE2_MATCH_EMPTY flag to detect empty matches in JIT.
2. Fix ARMv5 JIT improper handling of labels right after a constant pool.
Version 10.34 21-November-2019
------------------------------

View File

@ -666,6 +666,8 @@ SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compil
label->addr = (sljit_uw)SLJIT_ADD_EXEC_OFFSET(code_ptr, executable_offset);
label->size = code_ptr - code;
label = label->next;
next_addr = compute_next_addr(label, jump, const_, put_label);
}
}
}