mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
2011-06-01 Yao Qi <yao@codesourcery.com>
* objfiles.h (obj_section_addr): Update reference to objfile from `abfd' to `obfd'. (obj_section_endaddr): Likewise.
This commit is contained in:
parent
d19cd71304
commit
1706c19944
@ -1,3 +1,9 @@
|
||||
2011-06-01 Yao Qi <yao@codesourcery.com>
|
||||
|
||||
* objfiles.h (obj_section_addr): Update reference to objfile from
|
||||
`abfd' to `obfd'.
|
||||
(obj_section_endaddr): Likewise.
|
||||
|
||||
2011-06-01 Daniel Jacobowitz <drow@false.org>
|
||||
|
||||
* MAINTAINERS: Update my email address and affiliation. Also
|
||||
|
@ -128,13 +128,13 @@ struct obj_section
|
||||
|
||||
/* The memory address of section S (vma + offset). */
|
||||
#define obj_section_addr(s) \
|
||||
(bfd_get_section_vma ((s)->objfile->abfd, s->the_bfd_section) \
|
||||
(bfd_get_section_vma ((s)->objfile->obfd, s->the_bfd_section) \
|
||||
+ obj_section_offset (s))
|
||||
|
||||
/* The one-passed-the-end memory address of section S
|
||||
(vma + size + offset). */
|
||||
#define obj_section_endaddr(s) \
|
||||
(bfd_get_section_vma ((s)->objfile->abfd, s->the_bfd_section) \
|
||||
(bfd_get_section_vma ((s)->objfile->obfd, s->the_bfd_section) \
|
||||
+ bfd_get_section_size ((s)->the_bfd_section) \
|
||||
+ obj_section_offset (s))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user