Home | History | Annotate | Download | only in config

Lines Matching refs:rel

473   arelent *rel;
476 rel = xmalloc (sizeof (arelent));
477 rel->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
478 *rel->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
479 rel->address = fixp->fx_frag->fr_address + fixp->fx_where;
482 rel->addend = fixp->fx_addnumber;
483 rel->howto = bfd_reloc_type_lookup (stdoutput, r_type);
485 if (rel->howto == NULL)
491 rel->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
492 gas_assert (rel->howto != NULL);
495 return rel;