diff options
author | Dmitry Stogov <dmitry@zend.com> | 2014-08-27 22:45:27 +0400 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2014-08-27 22:45:27 +0400 |
commit | ee552b628c2d9f9455ac85d7791b4b4e8e4ddeb2 (patch) | |
tree | ec308a5fcbc94d729f0df0ea182dd4c2e700e6bc /Zend/zend_compile.c | |
parent | b1f53ca4157c2b544108e4af26dfe372b7158bf3 (diff) | |
download | php-git-ee552b628c2d9f9455ac85d7791b4b4e8e4ddeb2.tar.gz |
Reorder fields for better nenory consumtion and data locality on 64-bit systems
Diffstat (limited to 'Zend/zend_compile.c')
-rw-r--r-- | Zend/zend_compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index dad94e7219..40a59167b1 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -5095,7 +5095,7 @@ void zend_compile_try(zend_ast *ast TSRMLS_DC) { CG(active_op_array)->try_catch_array[try_catch_offset].finally_op = opnum_jmp + 1; CG(active_op_array)->try_catch_array[try_catch_offset].finally_end = get_next_op_number(CG(active_op_array)); - CG(active_op_array)->has_finally_block = 1; + CG(active_op_array)->fn_flags |= ZEND_ACC_HAS_FINALLY_BLOCK; zend_emit_op(NULL, ZEND_FAST_RET, NULL, NULL TSRMLS_CC); |