1
0
Fork 0

Decompiler: show opline number in error

This commit is contained in:
Xuefer 2015-07-08 12:18:18 +08:00
parent a3c1abfd2b
commit c3ce9a2d5b
1 changed files with 4 additions and 2 deletions

View File

@ -1460,8 +1460,10 @@ class Decompiler
}
++$j;
} while ($j <= $blockLast);
if (!assert('$blockLast <= $range[1]')) {
var_dump($blockLast, $range[1]);
if ($blockLast > $range[1]) {
fprintf(STDERR, "%d: \$blockLast(%d) > \$range[1](%d)\n", __LINE__, $blockLast, $range[1]);
assert('$blockLast <= $range[1]');
printBacktrace();
}