mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-18 03:27:52 +08:00
* dwarf2read.c (read_cutu_die_from_dwo): Fix assertion, at most one
of stub_comp_unit_die, stub_comp_dir is non-NULL.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2014-04-03 Doug Evans <dje@google.com>
|
||||||
|
|
||||||
|
* dwarf2read.c (read_cutu_die_from_dwo): Fix assertion, at most one
|
||||||
|
of stub_comp_unit_die, stub_comp_dir is non-NULL.
|
||||||
|
|
||||||
2014-04-02 Alan Modra <amodra@gmail.com>
|
2014-04-02 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
* symfile-mem.c (symbol_file_add_from_memory): Add size parameter.
|
* symfile-mem.c (symbol_file_add_from_memory): Add size parameter.
|
||||||
|
@ -4977,8 +4977,8 @@ read_cutu_die_from_dwo (struct dwarf2_per_cu_data *this_cu,
|
|||||||
struct attribute *attr;
|
struct attribute *attr;
|
||||||
struct die_info *comp_unit_die;
|
struct die_info *comp_unit_die;
|
||||||
|
|
||||||
/* Exactly one of these must be provided. */
|
/* At most one of these may be provided. */
|
||||||
gdb_assert ((stub_comp_unit_die != NULL) + (stub_comp_dir != NULL) == 1);
|
gdb_assert ((stub_comp_unit_die != NULL) + (stub_comp_dir != NULL) <= 1);
|
||||||
|
|
||||||
/* These attributes aren't processed until later:
|
/* These attributes aren't processed until later:
|
||||||
DW_AT_stmt_list, DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges.
|
DW_AT_stmt_list, DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges.
|
||||||
|
Reference in New Issue
Block a user