diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/dwarf.c | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 5a528aa..1fa48f5 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2007-04-09 Daniel Jacobowitz <dan@codesourcery.com> + + * dwarf.c (process_debug_info): Do not require DW_AT_frame_base for + DW_TAG_inlined_subroutine. + 2007-04-06 Matt Thomas <matt@netbsd.org> * MAINTAINERS: Add myself as VAX and NetBSD support maintainer. diff --git a/binutils/dwarf.c b/binutils/dwarf.c index f09ed1e..a0cecba 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -1733,7 +1733,6 @@ process_debug_info (struct dwarf_section *section, void *file, need_base_address = 1; break; case DW_TAG_entry_point: - case DW_TAG_inlined_subroutine: case DW_TAG_subprogram: need_base_address = 0; /* Assuming that there is no DW_AT_frame_base. */ |