aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-objc-common.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2003-10-30 23:14:43 -0800
committerRichard Henderson <rth@gcc.gnu.org>2003-10-30 23:14:43 -0800
commitc157f85cd502738cdbdb57dee1388d14d97a00ad (patch)
tree059c7084e2e13dc06d4f05204f437a4535dae739 /gcc/c-objc-common.c
parentad37274a974e6cdcba95558e979a99d3d6ac8fd6 (diff)
downloadgcc-c157f85cd502738cdbdb57dee1388d14d97a00ad.zip
gcc-c157f85cd502738cdbdb57dee1388d14d97a00ad.tar.gz
gcc-c157f85cd502738cdbdb57dee1388d14d97a00ad.tar.bz2
c-objc-common.c (c_tree_printer): Handle types correctly.
* c-objc-common.c (c_tree_printer): Handle types correctly. Factor code a bit. From-SVN: r73121
Diffstat (limited to 'gcc/c-objc-common.c')
-rw-r--r--gcc/c-objc-common.c38
1 files changed, 25 insertions, 13 deletions
diff --git a/gcc/c-objc-common.c b/gcc/c-objc-common.c
index 287cf30..e9a4a09 100644
--- a/gcc/c-objc-common.c
+++ b/gcc/c-objc-common.c
@@ -293,29 +293,41 @@ static bool
c_tree_printer (pretty_printer *pp, text_info *text)
{
tree t = va_arg (*text->args_ptr, tree);
+ const char *n = "({anonymous})";
switch (*text->format_spec)
{
case 'D':
case 'F':
+ if (DECL_NAME (t))
+ n = (*lang_hooks.decl_printable_name) (t, 2);
+ break;
+
case 'T':
- {
- const char *n = DECL_NAME (t)
- ? (*lang_hooks.decl_printable_name) (t, 2)
- : "({anonymous})";
- pp_string (pp, n);
- }
- return true;
+ if (TREE_CODE (t) == TYPE_DECL)
+ {
+ if (DECL_NAME (t))
+ n = (*lang_hooks.decl_printable_name) (t, 2);
+ }
+ else
+ {
+ t = TYPE_NAME (t);
+ if (t)
+ n = IDENTIFIER_POINTER (t);
+ }
+ break;
case 'E':
- if (TREE_CODE (t) == IDENTIFIER_NODE)
- {
- pp_string (pp, IDENTIFIER_POINTER (t));
- return true;
- }
- return false;
+ if (TREE_CODE (t) == IDENTIFIER_NODE)
+ n = IDENTIFIER_POINTER (t);
+ else
+ return false;
+ break;
default:
return false;
}
+
+ pp_string (pp, n);
+ return true;
}