Bug fix: a character was compared to op_lab, which is >= 128.
This commit is contained in:
parent
80ff3e60c4
commit
aad62add90
1 changed files with 1 additions and 1 deletions
|
@ -392,7 +392,7 @@ line_p read_line(p_out)
|
||||||
break;
|
break;
|
||||||
case OPINSTRLAB:
|
case OPINSTRLAB:
|
||||||
INSTRLAB(lnp) = getshort();
|
INSTRLAB(lnp) = getshort();
|
||||||
if (instr == op_lab) {
|
if ((instr & BMASK) == op_lab) {
|
||||||
/* defining occurrence of an
|
/* defining occurrence of an
|
||||||
* instruction label.
|
* instruction label.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue