From: Doug Evans Date: Fri, 29 Apr 1994 22:29:42 +0000 (+0000) Subject: (dbxout_type): check TYPE_DECL_SUPPRESS_DEBUG to generate cross reference X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=326af3bf5ed28be74cf058a98a0cb46bc592df26;p=gcc.git (dbxout_type): check TYPE_DECL_SUPPRESS_DEBUG to generate cross reference in stabs. From-SVN: r7184 --- diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 7f79b1a2f9a..994cc3779f0 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -927,7 +927,7 @@ dbxout_type (type, full, show_arg_types) type = TYPE_MAIN_VARIANT (type); if (TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL - && DECL_IGNORED_P (TYPE_NAME (type))) + && TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type))) full = 0; }