Skip to content

Commit 8fa3539

Browse files
committed
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: Fix GH-12364: JIT leak in Symfony TranslationDebugCommandTest (#12394)
2 parents 92ba5c2 + 5a276bf commit 8fa3539

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

ext/opcache/jit/zend_jit_arm64.dasc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14473,8 +14473,6 @@ static int zend_jit_fe_fetch(dasm_State **Dst, const zend_op *opline, uint32_t o
1447314473
if (exit_addr) {
1447414474
if (exit_opcode == ZEND_JMP) {
1447514475
| b &exit_addr
14476-
} else {
14477-
| b >3
1447814476
}
1447914477
} else {
1448014478
| b =>target_label

ext/opcache/jit/zend_jit_x86.dasc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15445,8 +15445,6 @@ static int zend_jit_fe_fetch(dasm_State **Dst, const zend_op *opline, uint32_t o
1544515445
if (exit_addr) {
1544615446
if (exit_opcode == ZEND_JMP) {
1544715447
| jmp &exit_addr
15448-
} else {
15449-
| jmp >3
1545015448
}
1545115449
} else {
1545215450
| jmp =>target_label

0 commit comments

Comments
 (0)