mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 19:50:13 +08:00
* dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
All callers updated.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2012-04-12 Doug Evans <dje@google.com>
|
||||||
|
|
||||||
|
* dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
|
||||||
|
All callers updated.
|
||||||
|
|
||||||
2012-04-12 Mark Kettenis <kettenis@gnu.org>
|
2012-04-12 Mark Kettenis <kettenis@gnu.org>
|
||||||
|
|
||||||
* i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
|
* i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
|
||||||
|
@ -3351,10 +3351,10 @@ create_all_type_units (struct objfile *objfile)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Lookup a signature based type.
|
/* Lookup a signature based type.
|
||||||
Returns NULL if SIG is not present in the table. */
|
Returns NULL if signature SIG is not present in the table. */
|
||||||
|
|
||||||
static struct signatured_type *
|
static struct signatured_type *
|
||||||
lookup_signatured_type (struct objfile *objfile, ULONGEST sig)
|
lookup_signatured_type (ULONGEST sig)
|
||||||
{
|
{
|
||||||
struct signatured_type find_entry, *entry;
|
struct signatured_type find_entry, *entry;
|
||||||
|
|
||||||
@ -10336,7 +10336,7 @@ read_attribute_value (struct attribute *attr, unsigned form,
|
|||||||
for later lookup.
|
for later lookup.
|
||||||
NOTE: This is NULL if the type wasn't found. */
|
NOTE: This is NULL if the type wasn't found. */
|
||||||
DW_SIGNATURED_TYPE (attr) =
|
DW_SIGNATURED_TYPE (attr) =
|
||||||
lookup_signatured_type (cu->objfile, read_8_bytes (abfd, info_ptr));
|
lookup_signatured_type (read_8_bytes (abfd, info_ptr));
|
||||||
info_ptr += 8;
|
info_ptr += 8;
|
||||||
break;
|
break;
|
||||||
case DW_FORM_ref_udata:
|
case DW_FORM_ref_udata:
|
||||||
|
Reference in New Issue
Block a user