diff options
Diffstat (limited to 'gas/config/tc-i386.c')
-rw-r--r-- | gas/config/tc-i386.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index dc1ee88..1f9844d 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -12576,7 +12576,18 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) /* Are we finished with this relocation now? */ if (fixP->fx_addsy == NULL) - fixP->fx_done = 1; + { + fixP->fx_done = 1; + switch (fixP->fx_r_type) + { + case BFD_RELOC_X86_64_32S: + fixP->fx_signed = 1; + break; + + default: + break; + } + } #if defined (OBJ_COFF) && defined (TE_PE) else if (fixP->fx_addsy != NULL && S_IS_WEAK (fixP->fx_addsy)) { |