fix: did not handle externals with big HOL offsets right

This commit is contained in:
ceriel 1987-07-29 10:39:02 +00:00
parent 300623ac88
commit 3cd5074594

View file

@ -342,6 +342,13 @@ line_p readoperand(instr)
#ifdef LONGOFF
case CSTX2:
/* double constant */
if (flag == PAR_G) {
lnp = newline(OPOBJECT);
OBJ(lnp) =
object((char *) 0, tabval2,
opr_size(instr));
break;
}
lnp = newline(OPOFFSET);
OFFSET(lnp) = tabval2;
break;