From: Cary Coutant Date: Wed, 7 Jan 2015 00:20:14 +0000 (-0800) Subject: Update experimental DWARF-5 values for two-level line number tables. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7ca0f8d7d976ae35103285d10175f2223644663;p=thirdparty%2Fbinutils-gdb.git Update experimental DWARF-5 values for two-level line number tables. http://wiki.dwarfstd.org/index.php?title=TwoLevelLineTables 2015-01-06 Cary Coutant include/ * dwarf2.h (enum dwarf_line_number_ops): Replace DW_LNS_inlined_call with DW_LNS_set_context and DW_LNS_set_subprogram. Renumber subsequent opcodes. --- diff --git a/include/dwarf2.h b/include/dwarf2.h index 4fca1dce7b7..f9d55595608 100644 --- a/include/dwarf2.h +++ b/include/dwarf2.h @@ -225,9 +225,10 @@ enum dwarf_line_number_ops DW_LNS_set_isa = 12, /* Experimental DWARF 5 extensions. See http://wiki.dwarfstd.org/index.php?title=TwoLevelLineTables. */ - DW_LNS_inlined_call = 13, - DW_LNS_pop_context = 14, - DW_LNS_set_address_from_logical = 15 + DW_LNS_set_address_from_logical = 13, /* Actuals table only. */ + DW_LNS_set_context = 13, /* Logicals table only. */ + DW_LNS_set_subprogram = 14, /* Logicals table only. */ + DW_LNS_pop_context = 15 /* Logicals table only. */ }; /* Line number extended opcodes. */