summaryrefslogtreecommitdiff
path: root/gas/config/tc-i386.c
diff options
context:
space:
mode:
Diffstat (limited to 'gas/config/tc-i386.c')
-rw-r--r--gas/config/tc-i386.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c
index fe59bf3b540..c8e68d5bc5d 100644
--- a/gas/config/tc-i386.c
+++ b/gas/config/tc-i386.c
@@ -10050,13 +10050,13 @@ output_disp (fragS *insn_start_frag, offsetT insn_start_off)
if (operand_type_check (i.types[n1], imm))
{
/* Only one immediate is allowed for PC
- relative address. */
- gas_assert (sz == 0);
- sz = imm_size (n1);
- i.op[n].disps->X_add_number -= sz;
+ relative address, except with .insn. */
+ gas_assert (sz == 0 || dot_insn ());
+ sz += imm_size (n1);
}
- /* We should find the immediate. */
+ /* We should find at least one immediate. */
gas_assert (sz != 0);
+ i.op[n].disps->X_add_number -= sz;
}
p = frag_more (size);