diff options
author | Cary Coutant <ccoutant@google.com> | 2015-01-23 13:09:15 -0800 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2015-01-23 13:11:06 -0800 |
commit | 49e4ed79b8acf48ea40cb8331005c286d4785d51 (patch) | |
tree | b268fdfb49a1dd8de63f9467798b57fa6622b83f | |
parent | c63bcc5d2dcbbe5415bfcc9514781fdb52da9a02 (diff) | |
download | binutils-49e4ed79b8acf48ea40cb8331005c286d4785d51.zip binutils-49e4ed79b8acf48ea40cb8331005c286d4785d51.tar.gz binutils-49e4ed79b8acf48ea40cb8331005c286d4785d51.tar.bz2 |
Update DW_LNS opcodes.
2015-01-23 Cary Coutant <ccoutant@google.com>
include/
* dwarf2.h (enum dwarf_line_number_ops): Remove
DW_LNS_set_context, add DW_LNS_inlined_call; renumber
new opcodes.
-rw-r--r-- | include/dwarf2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dwarf2.h b/include/dwarf2.h index f9d5559..e87119f 100644 --- a/include/dwarf2.h +++ b/include/dwarf2.h @@ -226,8 +226,8 @@ enum dwarf_line_number_ops /* Experimental DWARF 5 extensions. See http://wiki.dwarfstd.org/index.php?title=TwoLevelLineTables. */ 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_set_subprogram = 13, /* Logicals table only. */ + DW_LNS_inlined_call = 14, /* Logicals table only. */ DW_LNS_pop_context = 15 /* Logicals table only. */ }; |