diff options
author | Doug Evans <dje@gnu.org> | 1994-04-29 22:29:42 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1994-04-29 22:29:42 +0000 |
commit | 326af3bf5ed28be74cf058a98a0cb46bc592df26 (patch) | |
tree | bffe282711d1a0149aa89e14d115c47efb7e01b8 /gcc | |
parent | 60e9e4b7a3610eadecd2bd3d92ca4bee4f968ae4 (diff) | |
download | gcc-326af3bf5ed28be74cf058a98a0cb46bc592df26.zip gcc-326af3bf5ed28be74cf058a98a0cb46bc592df26.tar.gz gcc-326af3bf5ed28be74cf058a98a0cb46bc592df26.tar.bz2 |
(dbxout_type): check TYPE_DECL_SUPPRESS_DEBUG to generate cross reference
in stabs.
From-SVN: r7184
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/dbxout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 7f79b1a..994cc37 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; } |