From 8e07a239c12ba3b746ef0cf2c53d572315aef654 Mon Sep 17 00:00:00 2001 From: Yao Qi Date: Wed, 30 Jul 2014 16:50:49 +0800 Subject: [PATCH] Fix comment in dwarf_decode_lines_1 When I read dwarf_decode_lines_1 comments today, it should be called "special opcode" rather than "special operand", as said in DWARF spec. It is obvious to me. I'll push it in if no comments in three days. gdb: 2014-08-06 Yao Qi * dwarf2read.c (dwarf_decode_lines_1): Replace "Special operand" with "Special opcode" in comments. --- gdb/ChangeLog | 5 +++++ gdb/dwarf2read.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f61f92867c8..b02a94f7335 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2014-08-06 Yao Qi + + * dwarf2read.c (dwarf_decode_lines_1): Replace "Special + operand" with "Special opcode" in comments. + 2014-08-05 Gary Benson * interps.c (initialize_interps): Remove prototype. diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 276d2f1f672..837b1c1a9fc 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -17241,7 +17241,8 @@ dwarf_decode_lines_1 (struct line_header *lh, const char *comp_dir, if (op_code >= lh->opcode_base) { - /* Special operand. */ + /* Special opcode. */ + adj_opcode = op_code - lh->opcode_base; address += (((op_index + (adj_opcode / lh->line_range)) / lh->maximum_ops_per_instruction) -- 2.30.2