mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
2003-10-16 H.J. Lu <hongjiu.lu@intel.com>
* elf32-xtensa.c (xtensa_read_table_entries): The external size of entry is 8 bytes.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2003-10-16 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* elf32-xtensa.c (xtensa_read_table_entries): The external size
|
||||||
|
of entry is 8 bytes.
|
||||||
|
|
||||||
2003-10-15 Andrew Cagney <cagney@redhat.com>
|
2003-10-15 Andrew Cagney <cagney@redhat.com>
|
||||||
|
|
||||||
* targets.c (BFD_JUMP_TABLE_SYMBOLS): Replace NAME##_get_symtab
|
* targets.c (BFD_JUMP_TABLE_SYMBOLS): Replace NAME##_get_symtab
|
||||||
|
@ -514,7 +514,7 @@ xtensa_read_table_entries (abfd, section, table_p, sec_name)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
num_records = table_size / sizeof (property_table_entry);
|
num_records = table_size / 8;
|
||||||
table_data = retrieve_contents (abfd, table_section, TRUE);
|
table_data = retrieve_contents (abfd, table_section, TRUE);
|
||||||
blocks = (property_table_entry *)
|
blocks = (property_table_entry *)
|
||||||
bfd_malloc (num_records * sizeof (property_table_entry));
|
bfd_malloc (num_records * sizeof (property_table_entry));
|
||||||
@ -556,7 +556,7 @@ xtensa_read_table_entries (abfd, section, table_p, sec_name)
|
|||||||
and the addresses are already in the table. */
|
and the addresses are already in the table. */
|
||||||
bfd_vma off;
|
bfd_vma off;
|
||||||
|
|
||||||
for (off = 0; off < table_size; off += sizeof (property_table_entry))
|
for (off = 0; off < table_size; off += 8)
|
||||||
{
|
{
|
||||||
bfd_vma address = bfd_get_32 (abfd, table_data + off);
|
bfd_vma address = bfd_get_32 (abfd, table_data + off);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user