From: Dmitry Stogov Date: Thu, 7 Apr 2016 15:27:49 +0000 (+0300) Subject: Added missing "break" X-Git-Tag: php-7.1.0alpha1~351 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8921449785163556b1565b6c5c2a27a1f2b2a20b;p=php Added missing "break" --- diff --git a/ext/opcache/Optimizer/zend_ssa.c b/ext/opcache/Optimizer/zend_ssa.c index 1df5ec032e..438dcc5f6b 100644 --- a/ext/opcache/Optimizer/zend_ssa.c +++ b/ext/opcache/Optimizer/zend_ssa.c @@ -664,6 +664,7 @@ static int zend_ssa_rename(const zend_op_array *op_array, uint32_t build_flags, var[EX_VAR_TO_NUM(opline->op1.var)] = ssa_vars_count; ssa_vars_count++; } + break; case ZEND_VERIFY_RETURN_TYPE: if (opline->op1_type != IS_CONST) { ssa_ops[k].op1_def = ssa_vars_count;