Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 17 Jun 2013 12:49:26 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r251844 - head/contrib/gdb/gdb
Message-ID:  <201306171249.r5HCnQm5079361@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Mon Jun 17 12:49:26 2013
New Revision: 251844
URL: http://svnweb.freebsd.org/changeset/base/251844

Log:
  Include die tag in error message

Modified:
  head/contrib/gdb/gdb/dwarf2read.c

Modified: head/contrib/gdb/gdb/dwarf2read.c
==============================================================================
--- head/contrib/gdb/gdb/dwarf2read.c	Mon Jun 17 10:28:55 2013	(r251843)
+++ head/contrib/gdb/gdb/dwarf2read.c	Mon Jun 17 12:49:26 2013	(r251844)
@@ -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;
     }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306171249.r5HCnQm5079361>