diff options
author | Dmitry Stogov <dmitry@zend.com> | 2013-08-26 09:48:10 +0400 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2013-08-26 09:48:10 +0400 |
commit | 1c67a9940a7855bf485ae628d739d8c78ac6d1da (patch) | |
tree | 25c7b85bdfed83de8f4edc2d7d22f8f9daba207d | |
parent | 825a505494555e60c6cb3a32bc90de9d026420b9 (diff) | |
download | php-git-1c67a9940a7855bf485ae628d739d8c78ac6d1da.tar.gz |
Fixed compilation warning
-rw-r--r-- | ext/opcache/Optimizer/block_pass.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/opcache/Optimizer/block_pass.c b/ext/opcache/Optimizer/block_pass.c index 7f874e7a4b..43ae30419f 100644 --- a/ext/opcache/Optimizer/block_pass.c +++ b/ext/opcache/Optimizer/block_pass.c @@ -562,7 +562,6 @@ static void strip_nop(zend_code_block *block) { zend_op *opline = block->start_opline; zend_op *end, *new_end; - int new_len = 0; /* remove leading NOPs */ while (block->len > 0 && block->start_opline->opcode == ZEND_NOP) { |