* dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not

objfile's obstack.
This commit is contained in:
Tom Tromey 2013-05-06 19:28:36 +00:00
parent 3189cb1297
commit 7919a97345
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2013-05-06 Tom Tromey <tromey@redhat.com>
* dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
objfile's obstack.
2013-05-06 Doug Evans <dje@google.com>
* dbxread.c (process_one_symbol): Constify section_offsets parameter.

View File

@ -16424,13 +16424,12 @@ dwarf2_const_value_attr (struct attribute *attr, struct type *type,
/* Symbols of this form are reasonably rare, so we just
piggyback on the existing location code rather than writing
a new implementation of symbol_computed_ops. */
*baton = obstack_alloc (&objfile->objfile_obstack,
sizeof (struct dwarf2_locexpr_baton));
*baton = obstack_alloc (obstack, sizeof (struct dwarf2_locexpr_baton));
(*baton)->per_cu = cu->per_cu;
gdb_assert ((*baton)->per_cu);
(*baton)->size = 2 + cu_header->addr_size;
data = obstack_alloc (&objfile->objfile_obstack, (*baton)->size);
data = obstack_alloc (obstack, (*baton)->size);
(*baton)->data = data;
data[0] = DW_OP_addr;