From 2cc2396f840eadf9b9a9947ca7969b8ab0205291 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Tue, 8 Dec 2015 18:12:02 +0300 Subject: [PATCH] Fixed compilation with enabled internal debuging --- ext/opcache/Optimizer/block_pass.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ext/opcache/Optimizer/block_pass.c b/ext/opcache/Optimizer/block_pass.c index 42b688d17d..d2695c6c4b 100644 --- a/ext/opcache/Optimizer/block_pass.c +++ b/ext/opcache/Optimizer/block_pass.c @@ -759,6 +759,9 @@ static void assemble_code_blocks(zend_cfg *cfg, zend_op_array *op_array) zend_op *new_opcodes; zend_op *opline; uint32_t len = 0; +#if DEBUG_BLOCKPASS + int n; +#endif for (b = blocks; b < end; b++) { if (b->flags & ZEND_BB_REACHABLE) { -- 2.50.1