Home | History | Annotate | Download | only in config

Lines Matching defs:reloc

223    given a PC relative reloc.  */
243 /* Return the bfd reloc type for OPERAND of INSN at fixup FIXP.
244 Returns BFD_RELOC_NONE if no reloc type can be found.
310 arelent * reloc;
312 reloc = xmalloc (sizeof (* reloc));
313 reloc->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
314 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fx->fx_addsy);
315 reloc->address = fx->fx_frag->fr_address + fx->fx_where;
316 reloc->howto = bfd_reloc_type_lookup (stdoutput, fx->fx_r_type);
317 reloc->addend = fx->fx_offset;
318 return reloc;