svn commit: r256854 - stable/9/contrib/gdb/gdb
Ed Maste
emaste at FreeBSD.org
Mon Oct 21 18:26:23 UTC 2013
Author: emaste
Date: Mon Oct 21 18:26:22 2013
New Revision: 256854
URL: http://svnweb.freebsd.org/changeset/base/256854
Log:
MFC r251844: Include die tag in error message
Modified:
stable/9/contrib/gdb/gdb/dwarf2read.c
Directory Properties:
stable/9/contrib/gdb/ (props changed)
Modified: stable/9/contrib/gdb/gdb/dwarf2read.c
==============================================================================
--- stable/9/contrib/gdb/gdb/dwarf2read.c Mon Oct 21 18:25:36 2013 (r256853)
+++ stable/9/contrib/gdb/gdb/dwarf2read.c Mon Oct 21 18:26:22 2013 (r256854)
@@ -6082,8 +6082,8 @@ tag_type_to_type (struct die_info *die,
if (!die->type)
{
dump_die (die);
- error ("Dwarf Error: Cannot find type of die [in module %s]",
- cu->objfile->name);
+ error ("Dwarf Error: Cannot find type of die 0x%x [in module %s]",
+ die->tag, cu->objfile->name);
}
return die->type;
}
More information about the svn-src-stable-9
mailing list