Home
last modified time | relevance | path

Searched refs:n_lineno_cache (Results 1 – 2 of 2) sorted by relevance

/toolchain/binutils/binutils-2.25/bfd/
Dcoffcode.h4637 alent *n_lineno_cache; in coff_slurp_line_table() local
4657 n_lineno_cache = (alent *) bfd_alloc (abfd, amt); in coff_slurp_line_table()
4658 if (n_lineno_cache != NULL) in coff_slurp_line_table()
4660 alent *n_cache_ptr = n_lineno_cache; in coff_slurp_line_table()
4671 sym->lineno = lineno_cache + (n_cache_ptr - n_lineno_cache); in coff_slurp_line_table()
4677 BFD_ASSERT ((bfd_size_type) (n_cache_ptr - n_lineno_cache) == (amt / sizeof (alent))); in coff_slurp_line_table()
4679 memcpy (lineno_cache, n_lineno_cache, amt); in coff_slurp_line_table()
DChangeLog267 lineno. Don't both allocating terminator in n_lineno_cache.
268 Redirect sym->lineno pointer to where n_lineno_cache will be
269 copied, and free n_lineno_cache.