diff options
| author | Ulrich Drepper <[email protected]> | 2005-08-11 04:37:52 +0000 |
|---|---|---|
| committer | Ulrich Drepper <[email protected]> | 2005-08-11 04:37:52 +0000 |
| commit | 6d5c3bdf1b37ddb328604d0d5894d7aa70402366 (patch) | |
| tree | cdfa7f7d72f97d15b3a963902c4f96d80b902a78 | |
| parent | b6312e10e8c5ba3fa425e442273e2f709d28788f (diff) | |
Correct fallout of renaming of DW_LNS_set_epilog_begin.
| -rw-r--r-- | NEWS | 2 | ||||
| -rw-r--r-- | libdw/ChangeLog | 5 | ||||
| -rw-r--r-- | libdw/dwarf_getsrclines.c | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/readelf.c | 4 |
5 files changed, 15 insertions, 5 deletions
@@ -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 f70b5a3c..c5d1503c 100644 --- a/libdw/ChangeLog +++ b/libdw/ChangeLog @@ -1,3 +1,8 @@ +2005-08-10 Ulrich Drepper <[email protected]> + + * dwarf_getsrclines.c (dwarf_getsrclines): Correct fallout of renaming + of DW_LNS_set_epilog_begin. + 2005-08-09 Roland McGrath <[email protected]> * 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 37e14aee..85fe35eb 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 a285ac50..7552f777 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2005-08-10 Ulrich Drepper <[email protected]> + + * readelf.c (print_debug_line_section): Correct fallout of renaming + of DW_LNS_set_epilog_begin. + 2005-08-08 Roland McGrath <[email protected]> * strip.c (options, parse_opt): Grok -R .comment for compatibility diff --git a/src/readelf.c b/src/readelf.c index 7100b8e5..ac902cd3 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; |
