Bug fix: a character was compared to op_lab, which is >= 128.

This commit is contained in:
ceriel 1987-04-03 16:48:53 +00:00
parent 80ff3e60c4
commit aad62add90

View file

@ -392,7 +392,7 @@ line_p read_line(p_out)
break;
case OPINSTRLAB:
INSTRLAB(lnp) = getshort();
if (instr == op_lab) {
if ((instr & BMASK) == op_lab) {
/* defining occurrence of an
* instruction label.
*/