logo       
Google Custom Search
    AddThis Social Bookmark Button
-->

Re: cvs: ZendEngine2 / zend_compile.c: msg#00027

Subject: Re: cvs: ZendEngine2 / zend_compile.c

On 2005/01/12, at 17:12, Moriyoshi Koizumi wrote:

However, it looks like the rule doesn't apply to the current HEAD.

<?php
function op_array() {
  $a; // 1
  $a; // 2
  $a = $a + 2; // 3, 4
  // ... total 4 temporary variables
}
?>

Copy'n'paste mistake.. This part should have been like

<?php
function op_array() {
  $a; // 0
  $a; // 0
  $a = $a + 2; // 1, 2
  // ... total 2 temporary variables
}
?>

Moriyoshi

--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




<Prev in Thread] Current Thread [Next in Thread>