From 9bb76eb8a6e2a287775acf0188788a24d7c81dde Mon Sep 17 00:00:00 2001 From: DJ Delorie <dj@redhat.com> Date: Tue, 17 Dec 2002 03:55:46 +0000 Subject: * config/tc-xstormy16.c (md_cgen_lookup_reloc): If a relocation has already been set up, use it. --- gas/config/tc-xstormy16.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gas/config/tc-xstormy16.c') diff --git a/gas/config/tc-xstormy16.c b/gas/config/tc-xstormy16.c index 15d9892..592ba99 100644 --- a/gas/config/tc-xstormy16.c +++ b/gas/config/tc-xstormy16.c @@ -340,7 +340,10 @@ md_cgen_lookup_reloc (insn, operand, fixP) return fixP->fx_pcrel ? BFD_RELOC_8_PCREL : BFD_RELOC_8; case XSTORMY16_OPERAND_IMM16: + /* This might have been processed at parse time. */ fixP->fx_where += 2; + if (fixP->fx_cgen.opinfo && fixP->fx_cgen.opinfo != BFD_RELOC_NONE) + return fixP->fx_cgen.opinfo; return fixP->fx_pcrel ? BFD_RELOC_16_PCREL : BFD_RELOC_16; case XSTORMY16_OPERAND_ABS24: -- cgit v1.1