From 74153193c6309c00d14888a36de1bbedac8a6eec Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Mon, 22 Apr 2019 21:07:05 +0300 Subject: [PATCH] Use _zend_hash_find_known_hash() for IS_CONST operand --- ext/opcache/jit/zend_jit_x86.dasc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/opcache/jit/zend_jit_x86.dasc b/ext/opcache/jit/zend_jit_x86.dasc index fc618051f6..f1e3f899db 100644 --- a/ext/opcache/jit/zend_jit_x86.dasc +++ b/ext/opcache/jit/zend_jit_x86.dasc @@ -4435,7 +4435,7 @@ static int zend_jit_fetch_dimension_address_inner(dasm_State **Dst, const zend_o | EXT_CALL zend_hash_find, r0 |1: } else { - | EXT_CALL zend_hash_find, r0 + | EXT_CALL _zend_hash_find_known_hash, r0 } | test r0, r0 | jz >9 // NOT_FOUND @@ -4458,7 +4458,7 @@ static int zend_jit_fetch_dimension_address_inner(dasm_State **Dst, const zend_o | EXT_CALL zend_hash_find, r0 |1: } else { - | EXT_CALL zend_hash_find, r0 + | EXT_CALL _zend_hash_find_known_hash, r0 } | test r0, r0 | jz >2 // NOT_FOUND -- 2.40.0