Home | History | Annotate | Download | only in ld

Lines Matching full:relcount

1822 static int relcount = 0, relsize = 0;
1827 if (relcount >= relsize - 1)
1835 reltab[relcount].address = address;
1836 reltab[relcount].addend = 0;
1837 reltab[relcount].howto = bfd_reloc_type_lookup (abfd, which_howto);
1838 reltab[relcount].sym_ptr_ptr = symtab + symidx;
1839 relcount++;
1848 sec->reloc_count = relcount;
1849 sec->orelocation = xmalloc ((relcount + 1) * sizeof (arelent *));
1850 for (i = 0; i < relcount; i++)
1852 sec->orelocation[relcount] = 0;
1855 relcount = relsize = 0;