Bug fix: a character was compared to op_lab, which is >= 128.
This commit is contained in:
parent
b66453d5f8
commit
110d275401
@ -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…
x
Reference in New Issue
Block a user