From: Ian Lance Taylor Date: Sat, 5 Feb 1994 22:17:20 +0000 (+0000) Subject: Don't refer to new fields unless BFD_ASSEMBLER (from sac). X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3a0e38ee59290c597fb61f8c681f40f44e931a2e;p=binutils-gdb.git Don't refer to new fields unless BFD_ASSEMBLER (from sac). --- diff --git a/gas/write.c b/gas/write.c index 7bfa5c5f6e3..dc4c4e45a76 100644 --- a/gas/write.c +++ b/gas/write.c @@ -293,6 +293,7 @@ chain_frchains_together_1 (section, frchp) { prev_frag->fr_next = frchp->frch_root; prev_frag = frchp->frch_last; +#ifdef BFD_ASSEMBLER if (frchp->fix_root != (fixS *) NULL) { if (seg_info (section)->fix_root == (fixS *) NULL) @@ -300,6 +301,7 @@ chain_frchains_together_1 (section, frchp) prev_fix->fx_next = frchp->fix_root; prev_fix = frchp->fix_tail; } +#endif } prev_frag->fr_next = 0; return prev_frag;