summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2011-05-17 17:01:37 +0000
committerTom Tromey <tromey@redhat.com>2011-05-17 17:01:37 +0000
commitf51737c40e98b9201af17aa3a579fe184f5c069f (patch)
treea7d2f16b226440c22e3e4b912d957bfd8f869e95
parent9df6e9ef9556d54d33b64e10e6045b9a2e317fd0 (diff)
downloadgdb-f51737c40e98b9201af17aa3a579fe184f5c069f.tar.gz
* dwarf2read.c (dwarf2_get_die_type): Call
get_die_type_at_offset. * dwarf2expr.c (dwarf_get_base_type): Handle NULL return from get_base_type function.
-rw-r--r--gdb/ChangeLog7
-rw-r--r--gdb/dwarf2expr.c2
-rw-r--r--gdb/dwarf2read.c16
3 files changed, 10 insertions, 15 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 4b8a05f00f5..0e8a04f687a 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,10 @@
+2011-05-17 Tom Tromey <tromey@redhat.com>
+
+ * dwarf2read.c (dwarf2_get_die_type): Call
+ get_die_type_at_offset.
+ * dwarf2expr.c (dwarf_get_base_type): Handle NULL return from
+ get_base_type function.
+
2011-05-17 Tomas Martinec <fyzmat@gmail.com>
* infrun.c (handle_inferior_event) <handling deferred step>: Clear
diff --git a/gdb/dwarf2expr.c b/gdb/dwarf2expr.c
index 1fe8b796b50..5cd33a6df84 100644
--- a/gdb/dwarf2expr.c
+++ b/gdb/dwarf2expr.c
@@ -447,6 +447,8 @@ dwarf_get_base_type (struct dwarf_expr_context *ctx, ULONGEST die, int size)
if (ctx->get_base_type)
{
result = ctx->get_base_type (ctx, die);
+ if (result == NULL)
+ error (_("Could not find type for DW_OP_GNU_const_type"));
if (size != 0 && TYPE_LENGTH (result) != size)
error (_("DW_OP_GNU_const_type has different sizes for type and data"));
}
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
index 22643c5b949..6558bfed863 100644
--- a/gdb/dwarf2read.c
+++ b/gdb/dwarf2read.c
@@ -13671,22 +13671,8 @@ struct type *
dwarf2_get_die_type (unsigned int die_offset,
struct dwarf2_per_cu_data *per_cu)
{
- struct dwarf2_cu *cu = per_cu->cu;
- struct die_info *die;
- struct type *result;
-
dw2_setup (per_cu->objfile);
-
- die = follow_die_offset (die_offset, &cu);
- if (!die)
- error (_("Dwarf Error: Cannot find DIE at 0x%x referenced in module %s"),
- die_offset, per_cu->cu->objfile->name);
-
- result = get_die_type (die, cu);
- if (result == NULL)
- result = read_type_die_1 (die, cu);
-
- return result;
+ return get_die_type_at_offset (die_offset, per_cu);
}
/* Follow the signature attribute ATTR in SRC_DIE.