Arquivos
hhvm/hphp/test/quick/zero_eval_stack_depth.php
T
Drew Paroski 28968640bd Remove bogus assert in bytecode emitter
I hit an array on the debug build when I tried to run the following
program:

  <?php
  function f() {
    for (;;) {}
  }
  f();

This diff removes the offending assert since it is technically possible to
have m_maxStackDepth be equal to 0.
2013-07-01 13:40:57 -07:00

6 linhas
52 B
PHP

<?php
function f() {
for (;;) {}
}
echo "Done\n";