diff options
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/libelf.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bfd/libelf.h b/bfd/libelf.h index 1c75f48..01d1599 100644 --- a/bfd/libelf.h +++ b/bfd/libelf.h @@ -490,6 +490,12 @@ struct elf_obj_tdata /* Records the result of `get_program_header_size'. */ bfd_size_type program_header_size; + + /* Used by MIPS ELF find_nearest_line entry point. The structure + could be included directly in this one, but there's no point to + wasting the memory just for the infrequently called + find_nearest_line. */ + struct mips_elf_find_line *find_line_info; }; #define elf_tdata(bfd) ((bfd) -> tdata.elf_obj_data) |