aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1994-06-18 13:40:20 -0700
committerJim Wilson <wilson@gcc.gnu.org>1994-06-18 13:40:20 -0700
commit3a83beef35bf269f57c61e00b65db33edf9804ae (patch)
tree563d1b27375e8af26de5587afeb7218502b83d81 /gcc
parent711a5e64b825fa5e5591da0514b1839a07be301d (diff)
downloadgcc-3a83beef35bf269f57c61e00b65db33edf9804ae.zip
gcc-3a83beef35bf269f57c61e00b65db33edf9804ae.tar.gz
gcc-3a83beef35bf269f57c61e00b65db33edf9804ae.tar.bz2
(dbxout_symbol): Replace DECL_IGNORED_P with
TYPE_DECL_SUPPRESS_DEBUG. From-SVN: r7515
Diffstat (limited to 'gcc')
-rw-r--r--gcc/dbxout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c
index 75b01d8..7da2d41 100644
--- a/gcc/dbxout.c
+++ b/gcc/dbxout.c
@@ -1586,7 +1586,7 @@ dbxout_symbol (decl, local)
#endif
/* Don't output the same typedef twice.
And don't output what language-specific stuff doesn't want output. */
- if (TREE_ASM_WRITTEN (decl) || DECL_IGNORED_P (decl))
+ if (TREE_ASM_WRITTEN (decl) || TYPE_DECL_SUPPRESS_DEBUG (decl))
return;
FORCE_TEXT;