Home | History | Annotate | Download | only in config

Lines Matching refs:relP

3915   arelent *relP;
3962 relP = (arelent *) xmalloc (sizeof (arelent));
3963 gas_assert (relP != 0);
3964 relP->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
3965 *relP->sym_ptr_ptr = symbol_get_bfdsym (fixP->fx_addsy);
3966 relP->address = fixP->fx_frag->fr_address + fixP->fx_where;
3968 relP->addend = fixP->fx_offset;
3996 relP->addend -= S_GET_VALUE (fixP->fx_addsy);
3999 relP->howto = bfd_reloc_type_lookup (stdoutput, code);
4000 if (! relP->howto)
4011 return relP;