fix: did not handle externals with big HOL offsets right
This commit is contained in:
parent
300623ac88
commit
3cd5074594
1 changed files with 7 additions and 0 deletions
|
@ -342,6 +342,13 @@ line_p readoperand(instr)
|
||||||
#ifdef LONGOFF
|
#ifdef LONGOFF
|
||||||
case CSTX2:
|
case CSTX2:
|
||||||
/* double constant */
|
/* double constant */
|
||||||
|
if (flag == PAR_G) {
|
||||||
|
lnp = newline(OPOBJECT);
|
||||||
|
OBJ(lnp) =
|
||||||
|
object((char *) 0, tabval2,
|
||||||
|
opr_size(instr));
|
||||||
|
break;
|
||||||
|
}
|
||||||
lnp = newline(OPOFFSET);
|
lnp = newline(OPOFFSET);
|
||||||
OFFSET(lnp) = tabval2;
|
OFFSET(lnp) = tabval2;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue