From 8921449785163556b1565b6c5c2a27a1f2b2a20b Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Thu, 7 Apr 2016 18:27:49 +0300 Subject: [PATCH] Added missing "break" --- ext/opcache/Optimizer/zend_ssa.c | 1 + 1 file changed, 1 insertion(+) 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; -- 2.50.1