* tree-mudflap.c (mf_varname_tree): Fix thinko setting declname.

From-SVN: r92901
This commit is contained in:
Richard Henderson 2005-01-04 10:47:02 -08:00 committed by Richard Henderson
parent 21e5076a0b
commit bfee926bd1
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2005-01-04 Richard Henderson <rth@redhat.com>
* tree-mudflap.c (mf_varname_tree): Fix thinko setting declname.
2005-01-04 Uros Bizjak <uros@kss-loka.si>
PR middle-end/17767

View File

@ -1,5 +1,5 @@
/* Mudflap: narrow-pointer bounds-checking by tree rewriting.
Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
Contributed by Frank Ch. Eigler <fche@redhat.com>
and Graydon Hoare <graydon@redhat.com>
@ -161,7 +161,7 @@ mf_varname_tree (tree decl)
/* Add <variable-declaration>, possibly demangled. */
{
const char *declname = "<unnamed variable>";
const char *declname = NULL;
if (DECL_NAME (decl) != NULL)
{
@ -175,6 +175,8 @@ mf_varname_tree (tree decl)
if (declname == NULL)
declname = lang_hooks.decl_printable_name (decl, 3);
}
if (declname == NULL)
declname = "<unnamed variable>";
pp_string (buf, declname);
}