summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlrich Drepper <[email protected]>2005-08-11 04:37:52 +0000
committerUlrich Drepper <[email protected]>2005-08-11 04:37:52 +0000
commit6d5c3bdf1b37ddb328604d0d5894d7aa70402366 (patch)
treecdfa7f7d72f97d15b3a963902c4f96d80b902a78
parentb6312e10e8c5ba3fa425e442273e2f709d28788f (diff)
Correct fallout of renaming of DW_LNS_set_epilog_begin.
-rw-r--r--NEWS2
-rw-r--r--libdw/ChangeLog5
-rw-r--r--libdw/dwarf_getsrclines.c4
-rw-r--r--src/ChangeLog5
-rw-r--r--src/readelf.c4
5 files changed, 15 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index d03953ab..5111a481 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 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;