aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2012-03-06 23:41:50 +0000
committerJoel Brobecker <brobecker@gnat.com>2012-03-06 23:41:50 +0000
commit1281d2a30a0a95b46ef86b64d7e3f1d5502c14ba (patch)
tree98852e186ad2a60aaf491950fdc307b1ab8686f4 /gdb
parent9f3bdf60f97e0d6745fbae99d1af4d38aa8409d3 (diff)
downloadgdb-1281d2a30a0a95b46ef86b64d7e3f1d5502c14ba.zip
gdb-1281d2a30a0a95b46ef86b64d7e3f1d5502c14ba.tar.gz
gdb-1281d2a30a0a95b46ef86b64d7e3f1d5502c14ba.tar.bz2
Pass absolute die offset in call to get_die_type_at_offset
gdb/ChangeLog: * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset in call to get_die_type_at_offset.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/dwarf2read.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 760ae5c..e54180c 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2012-03-06 Joel Brobecker <brobecker@adacore.com>
+
+ * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
+ in call to get_die_type_at_offset.
+
2012-03-06 Stan Shebs <stan@codesourcery.com>
* mi/mi-cmd-break.c: Enforce coding standards, fix comments.
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
index 3fa28b1..307d98e 100644
--- a/gdb/dwarf2read.c
+++ b/gdb/dwarf2read.c
@@ -14269,7 +14269,7 @@ dwarf2_get_die_type (unsigned int die_offset,
struct dwarf2_per_cu_data *per_cu)
{
dw2_setup (per_cu->objfile);
- return get_die_type_at_offset (die_offset, per_cu);
+ return get_die_type_at_offset (per_cu->offset + die_offset, per_cu);
}
/* Follow the signature attribute ATTR in SRC_DIE.