# HG changeset patch # User Petter T. # Date 1686867528 -7200 # Fri Jun 16 00:18:48 2023 +0200 # Node ID 0789ae11b09672966d6a20e1079d01feea76b235 # Parent 8b4b4162570e3475b70a010fb3210932215008ee Fixed printing bytecode MATRIX_UNEVEN * libinterp/parse-tree/pt-bytecode-vm.cc: Missing increment diff -r 8b4b4162570e -r 0789ae11b096 libinterp/parse-tree/pt-bytecode-vm.cc --- a/libinterp/parse-tree/pt-bytecode-vm.cc Thu Jun 15 16:04:22 2023 +0200 +++ b/libinterp/parse-tree/pt-bytecode-vm.cc Fri Jun 16 00:18:48 2023 +0200 @@ -413,7 +413,7 @@ { if (p + 3 >= code + n) error ("Invalid bytecode\n"); - int i = chars_to_uint (p); + int i = chars_to_uint (p + 1); s += " ROWS"; PINT (); s += " COLS"; for (int j = 0; j < i; j++)