diff options
author | Xinchen Hui <laruence@php.net> | 2013-12-13 10:56:35 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2013-12-13 10:56:35 +0800 |
commit | ef73f85079e7563cb82afde35f0e89321257f0d9 (patch) | |
tree | 520ce7f54eb8341e62ad9166d11d3e95b3d74336 /Zend/zend_opcode.c | |
parent | dde552f2ee921550646c4236471c1252a9534b52 (diff) | |
download | php-git-ef73f85079e7563cb82afde35f0e89321257f0d9.tar.gz |
Use zend_error_noreturn here
Diffstat (limited to 'Zend/zend_opcode.c')
-rw-r--r-- | Zend/zend_opcode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index c47168757d..2dfa9848b6 100644 --- a/Zend/zend_opcode.c +++ b/Zend/zend_opcode.c @@ -496,7 +496,7 @@ static void zend_check_finally_breakout(zend_op_array *op_array, zend_uint op_nu CG(in_compilation) = 1; CG(active_op_array) = op_array; CG(zend_lineno) = op_array->opcodes[op_num].lineno; - zend_error(E_COMPILE_ERROR, "jump into a finally block is disallowed"); + zend_error_noreturn(E_COMPILE_ERROR, "jump into a finally block is disallowed"); } else if ((op_num >= op_array->try_catch_array[i].finally_op && op_num <= op_array->try_catch_array[i].finally_end) && (dst_num > op_array->try_catch_array[i].finally_end |