From: Jim Wilson Date: Sat, 18 Jun 1994 20:40:20 +0000 (-0700) Subject: (dbxout_symbol): Replace DECL_IGNORED_P with X-Git-Tag: misc/cutover-egcs-0~6428 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a83beef35bf269f57c61e00b65db33edf9804ae;p=thirdparty%2Fgcc.git (dbxout_symbol): Replace DECL_IGNORED_P with TYPE_DECL_SUPPRESS_DEBUG. From-SVN: r7515 --- diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 75b01d8c4e96..7da2d41467b3 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;