mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
Fixed 64-bit offset generation.
This commit is contained in:
parent
7cf03aff4f
commit
7a68f30dd7
2
parser.c
2
parser.c
@ -561,7 +561,7 @@ insn *parse_line(int pass, char *buffer, insn * result,
|
||||
if (mref) { /* it's a memory reference */
|
||||
expr *e = value;
|
||||
int b, i, s; /* basereg, indexreg, scale */
|
||||
int32_t o; /* offset */
|
||||
int64_t o; /* offset */
|
||||
|
||||
b = i = -1, o = s = 0;
|
||||
result->oprs[operand].hintbase = hints.base;
|
||||
|
Loading…
x
Reference in New Issue
Block a user