summaryrefslogtreecommitdiffstats
path: root/libdw/dwarf_getsrclines.c
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 /libdw/dwarf_getsrclines.c
parentb6312e10e8c5ba3fa425e442273e2f709d28788f (diff)
Correct fallout of renaming of DW_LNS_set_epilog_begin.
Diffstat (limited to 'libdw/dwarf_getsrclines.c')
-rw-r--r--libdw/dwarf_getsrclines.c4
1 files changed, 2 insertions, 2 deletions
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;