From b0aeadb398e0cea7a7f0ff3e6fb20c9aea98453c Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Thu, 3 Apr 2014 12:07:25 -0700 Subject: [PATCH] * dwarf2read.c (read_cutu_die_from_dwo): Fix assertion, at most one of stub_comp_unit_die, stub_comp_dir is non-NULL. --- gdb/ChangeLog | 5 +++++ gdb/dwarf2read.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b953940..ea3d976 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2014-04-03 Doug Evans + + * 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 * symfile-mem.c (symbol_file_add_from_memory): Add size parameter. diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 3e77cf8..103219c 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -4977,8 +4977,8 @@ read_cutu_die_from_dwo (struct dwarf2_per_cu_data *this_cu, struct attribute *attr; struct die_info *comp_unit_die; - /* Exactly one of these must be provided. */ - gdb_assert ((stub_comp_unit_die != NULL) + (stub_comp_dir != NULL) == 1); + /* At most one of these may be provided. */ + gdb_assert ((stub_comp_unit_die != NULL) + (stub_comp_dir != NULL) <= 1); /* These attributes aren't processed until later: DW_AT_stmt_list, DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges. -- 2.7.4