From 1ec2d25ebf75dc6efc4a57e9e62565cf3ad13d87 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Tue, 6 Nov 2012 03:20:31 +0000 Subject: [PATCH] * config/tc-ppc.c (md_apply_fix): Fix xcoff build breakage from last patch. --- gas/ChangeLog | 5 +++++ gas/config/tc-ppc.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/gas/ChangeLog b/gas/ChangeLog index f8d84d5..474b617 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2012-11-06 Alan Modra + + * config/tc-ppc.c (md_apply_fix): Fix xcoff build breakage from + last patch. + 2012-11-05 Sean Keys * config/tc-xgate.c: Remove bogus use of . diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index 2dc2f59..c72a863 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -6360,10 +6360,12 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) fieldval = value; switch (fixP->fx_r_type) { +#ifdef OBJ_ELF case BFD_RELOC_PPC64_ADDR16_LO_DS: if (fixP->fx_pcrel) goto bad_pcrel; /* fall through */ +#endif case BFD_RELOC_LO16: if (fixP->fx_pcrel) fixP->fx_r_type = BFD_RELOC_LO16_PCREL; -- 2.7.4