Home | History | Annotate | Download | only in config

Lines Matching refs:reloc

2037 /* GAS will call this to generate a reloc.  GAS will pass the
2038 resulting reloc to `bfd_install_relocation'. This currently works
2044 /* If while processing a fixup, a reloc really
2050 arelent *reloc;
2055 _("reloc %d not supported by object file format"),
2060 reloc = xmalloc (sizeof (arelent));
2061 reloc->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
2062 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
2063 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
2064 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
2065 reloc->addend = fixp->fx_offset;
2067 return reloc;