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;
|
||||
case OPINSTRLAB:
|
||||
INSTRLAB(lnp) = getshort();
|
||||
if (instr == op_lab) {
|
||||
if ((instr & BMASK) == op_lab) {
|
||||
/* defining occurrence of an
|
||||
* instruction label.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue