diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-08-10 20:03:32 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-08-10 20:03:32 +0000 |
commit | 0efffb96a98349f8305e81ec4103dacec4e59baf (patch) | |
tree | 4af60090c4ba9651755ddfc0f40251a351edc16b /gdb/dbxread.c | |
parent | 7936743b083af802de53a9483c450d917e991d46 (diff) | |
download | gdb-0efffb96a98349f8305e81ec4103dacec4e59baf.zip gdb-0efffb96a98349f8305e81ec4103dacec4e59baf.tar.gz gdb-0efffb96a98349f8305e81ec4103dacec4e59baf.tar.bz2 |
2004-08-10 Andrew Cagney <cagney@gnu.org>
* defs.h (xmrealloc): Delete.
* utils.c (xmrealloc): Delete.
(xrealloc): Inline calls to xmrealloc, mmalloc and mrealloc.
* symmisc.c (extend_psymbol_list): Use xrealloc.
* source.c (find_source_lines): Ditto.
* hpread.c (hpread_lookup_type): Ditto.
* dbxread.c (add_bincl_to_list): Ditto.
Diffstat (limited to 'gdb/dbxread.c')
-rw-r--r-- | gdb/dbxread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c index 2f7c23a..28b0d6b 100644 --- a/gdb/dbxread.c +++ b/gdb/dbxread.c @@ -905,8 +905,8 @@ add_bincl_to_list (struct partial_symtab *pst, char *name, int instance) int offset = next_bincl - bincl_list; bincls_allocated *= 2; bincl_list = (struct header_file_location *) - xmrealloc (pst->objfile->md, (char *) bincl_list, - bincls_allocated * sizeof (struct header_file_location)); + xrealloc ((char *) bincl_list, + bincls_allocated * sizeof (struct header_file_location)); next_bincl = bincl_list + offset; } next_bincl->pst = pst; |