Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 Oct 2013 18:26:23 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r256854 - stable/9/contrib/gdb/gdb
Message-ID:  <201310211826.r9LIQNWi068243@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;
     }



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