From: Alan Modra Date: Fri, 1 Oct 2004 08:08:54 +0000 (+0000) Subject: * config/tc-arc.c (tc_gen_reloc): Don't assume fixP->fx_addsy is an X-Git-Tag: gdb_6_3-20041019-branchpoint~208 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=65555e641ff0def45c468ee53760d06d8e443573;p=external%2Fbinutils.git * config/tc-arc.c (tc_gen_reloc): Don't assume fixP->fx_addsy is an asymbol *, instead use symbol_get_bfdsym. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index d614571..c11bbaf 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2004-10-01 Ravi Ramaseshan + + * config/tc-arc.c (tc_gen_reloc): Don't assume fixP->fx_addsy is an + asymbol *, instead use symbol_get_bfdsym. + 2004-09-30 Linus Nielsen Feltzing * config/tc-m68k.c (select_control_regs): Add mcf5249. diff --git a/gas/config/tc-arc.c b/gas/config/tc-arc.c index be1e93c..4f17526 100644 --- a/gas/config/tc-arc.c +++ b/gas/config/tc-arc.c @@ -1,5 +1,5 @@ /* tc-arc.c -- Assembler for the ARC - Copyright 1994, 1995, 1997, 1999, 2000, 2001, 2002 + Copyright 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. Contributed by Doug Evans (dje@cygnus.com). @@ -1978,8 +1978,9 @@ tc_gen_reloc (section, fixP) arelent *reloc; reloc = (arelent *) xmalloc (sizeof (arelent)); + reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *)); - reloc->sym_ptr_ptr = &fixP->fx_addsy->bsym; + *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixP->fx_addsy); reloc->address = fixP->fx_frag->fr_address + fixP->fx_where; reloc->howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type); if (reloc->howto == (reloc_howto_type *) NULL)