]> git.ipfire.org Git - thirdparty/elfutils.git/commitdiff
Correct fallout of renaming of DW_LNS_set_epilog_begin.
authorUlrich Drepper <drepper@redhat.com>
Thu, 11 Aug 2005 04:37:52 +0000 (04:37 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 11 Aug 2005 04:37:52 +0000 (04:37 +0000)
NEWS
libdw/ChangeLog
libdw/dwarf_getsrclines.c
src/ChangeLog
src/readelf.c

diff --git a/NEWS b/NEWS
index d03953abc507a12b0cb56599672d165b2186b4cb..5111a481153679181caaebcfbf0b4c20174538c2 100644 (file)
--- 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 numbeof problems with elf_update
 
 elfcmp: fix a few bugs.  Compare gaps.
 
index f70b5a3c6a58fedcb76b94932c77750d5e90cb76..c5d1503c71ba3da570cc38ac2d6e543c54429c68 100644 (file)
@@ -1,3 +1,8 @@
+2005-08-10  Ulrich Drepper  <drepper@redhat.com>
+
+       * dwarf_getsrclines.c (dwarf_getsrclines): Correct fallout of renaming
+       of DW_LNS_set_epilog_begin.
+
 2005-08-09  Roland McGrath  <roland@redhat.com>
 
        * dwarf.h (DW_LNS_set_epilog_begin): Renamed DW_LNS_set_epilogue_begin.
index 37e14aee07aabfa4f5fa18152a8f19783c81fe3d..85fe35eb1ec566c68378afb2867c5263d051063c 100644 (file)
@@ -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;
index a285ac50ab7d5b79d219b46d134fa8435bb42d6b..7552f77744abc82d8616064ffcce7f65efb21866 100644 (file)
@@ -1,3 +1,8 @@
+2005-08-10  Ulrich Drepper  <drepper@redhat.com>
+
+       * readelf.c (print_debug_line_section): Correct fallout of renaming
+       of DW_LNS_set_epilog_begin.
+
 2005-08-08  Roland McGrath  <roland@redhat.com>
 
        * strip.c (options, parse_opt): Grok -R .comment for compatibility
index 7100b8e528bba58f21adb5bd7bf7dbb58afcb074..ac902cd36cec62f3982c3362409a0f53d4e2af97 100644 (file)
@@ -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;