mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 22:48:57 +08:00
(dwarf_decode_lines_1): Delete local "column", unused.
* dwarf2read.c (dwarf_decode_lines_1): Delete local "column", unused.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2014-08-15 Doug Evans <dje@google.com>
|
||||||
|
|
||||||
|
* dwarf2read.c (dwarf_decode_lines_1): Delete local "column", unused.
|
||||||
|
|
||||||
2014-08-15 Doug Evans <dje@google.com>
|
2014-08-15 Doug Evans <dje@google.com>
|
||||||
|
|
||||||
* dwarf2read.c (dwarf_decode_lines_1): Delete local basic_block,
|
* dwarf2read.c (dwarf_decode_lines_1): Delete local basic_block,
|
||||||
|
@ -17203,7 +17203,6 @@ dwarf_decode_lines_1 (struct line_header *lh, const char *comp_dir,
|
|||||||
CORE_ADDR address = 0;
|
CORE_ADDR address = 0;
|
||||||
unsigned int file = 1;
|
unsigned int file = 1;
|
||||||
unsigned int line = 1;
|
unsigned int line = 1;
|
||||||
unsigned int column = 0;
|
|
||||||
int is_stmt = lh->default_is_stmt;
|
int is_stmt = lh->default_is_stmt;
|
||||||
int end_sequence = 0;
|
int end_sequence = 0;
|
||||||
CORE_ADDR addr;
|
CORE_ADDR addr;
|
||||||
@ -17408,7 +17407,7 @@ dwarf_decode_lines_1 (struct line_header *lh, const char *comp_dir,
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case DW_LNS_set_column:
|
case DW_LNS_set_column:
|
||||||
column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
|
(void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
|
||||||
line_ptr += bytes_read;
|
line_ptr += bytes_read;
|
||||||
break;
|
break;
|
||||||
case DW_LNS_negate_stmt:
|
case DW_LNS_negate_stmt:
|
||||||
|
Reference in New Issue
Block a user