insnsb.c: use 5 digits for index, not 4

We already have indexes up to 9500, so use 5 digits instead of 4.
This commit is contained in:
H. Peter Anvin 2008-05-12 15:28:33 -07:00
parent ff3b57c253
commit 0a4d23219e

View File

@ -113,7 +113,7 @@ if ( !defined($output) || $output eq 'b') {
$p = 0;
foreach $bl (@bytecode_array) {
printf B " /* %4d */ ", $p;
printf B " /* %5d */ ", $p;
foreach $d (@$bl) {
printf B "%#o,", $d;
$p++;