From: Ulrich Drepper Date: Thu, 11 Aug 2005 04:37:52 +0000 (+0000) Subject: Correct fallout of renaming of DW_LNS_set_epilog_begin. X-Git-Tag: elfutils-0.120~132 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6d5c3bdf1b37ddb328604d0d5894d7aa70402366;p=thirdparty%2Felfutils.git Correct fallout of renaming of DW_LNS_set_epilog_begin. --- diff --git a/NEWS b/NEWS index d03953abc..5111a4811 100644 --- a/NEWS +++ b/NEWS @@ -27,7 +27,7 @@ elfcmp: little usability tweak, name and index of differing section is printed. Version 0.110: -libelf: fix a numbe rof problems with elf_update +libelf: fix a number of problems with elf_update elfcmp: fix a few bugs. Compare gaps. diff --git a/libdw/ChangeLog b/libdw/ChangeLog index f70b5a3c6..c5d1503c7 100644 --- a/libdw/ChangeLog +++ b/libdw/ChangeLog @@ -1,3 +1,8 @@ +2005-08-10 Ulrich Drepper + + * dwarf_getsrclines.c (dwarf_getsrclines): Correct fallout of renaming + of DW_LNS_set_epilog_begin. + 2005-08-09 Roland McGrath * dwarf.h (DW_LNS_set_epilog_begin): Renamed DW_LNS_set_epilogue_begin. diff --git a/libdw/dwarf_getsrclines.c b/libdw/dwarf_getsrclines.c index 37e14aee0..85fe35eb1 100644 --- a/libdw/dwarf_getsrclines.c +++ b/libdw/dwarf_getsrclines.c @@ -450,7 +450,7 @@ dwarf_getsrclines (Dwarf_Die *cudie, Dwarf_Lines **lines, size_t *nlines) break; } } - else if (opcode <= DW_LNS_set_epilog_begin) + else if (opcode <= DW_LNS_set_epilogue_begin) { /* This is a known standard opcode. */ switch (opcode) @@ -553,7 +553,7 @@ dwarf_getsrclines (Dwarf_Die *cudie, Dwarf_Lines **lines, size_t *nlines) prologue_end = 1; break; - case DW_LNS_set_epilog_begin: + case DW_LNS_set_epilogue_begin: /* Takes no argument. */ if (unlikely (standard_opcode_lengths[opcode] != 0)) goto invalid_data; diff --git a/src/ChangeLog b/src/ChangeLog index a285ac50a..7552f7774 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2005-08-10 Ulrich Drepper + + * readelf.c (print_debug_line_section): Correct fallout of renaming + of DW_LNS_set_epilog_begin. + 2005-08-08 Roland McGrath * strip.c (options, parse_opt): Grok -R .comment for compatibility diff --git a/src/readelf.c b/src/readelf.c index 7100b8e52..ac902cd36 100644 --- a/src/readelf.c +++ b/src/readelf.c @@ -4351,7 +4351,7 @@ define new file: dir=%u, mtime=%" PRIu64 ", length=%" PRIu64 ", name=%s\n"), break; } } - else if (opcode <= DW_LNS_set_epilog_begin) + else if (opcode <= DW_LNS_set_epilogue_begin) { /* This is a known standard opcode. */ switch (opcode) @@ -4438,7 +4438,7 @@ define new file: dir=%u, mtime=%" PRIu64 ", length=%" PRIu64 ", name=%s\n"), puts (gettext (" set prologue end flag")); break; - case DW_LNS_set_epilog_begin: + case DW_LNS_set_epilogue_begin: /* Takes no argument. */ puts (gettext (" set epilogue begin flag")); break;