From 326af3bf5ed28be74cf058a98a0cb46bc592df26 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Fri, 29 Apr 1994 22:29:42 +0000 Subject: [PATCH] (dbxout_type): check TYPE_DECL_SUPPRESS_DEBUG to generate cross reference in stabs. From-SVN: r7184 --- gcc/dbxout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.30.2