Commit 3a83beef by Jim Wilson

(dbxout_symbol): Replace DECL_IGNORED_P with

TYPE_DECL_SUPPRESS_DEBUG.

From-SVN: r7515
parent 711a5e64
...@@ -1586,7 +1586,7 @@ dbxout_symbol (decl, local) ...@@ -1586,7 +1586,7 @@ dbxout_symbol (decl, local)
#endif #endif
/* Don't output the same typedef twice. /* Don't output the same typedef twice.
And don't output what language-specific stuff doesn't want output. */ 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; return;
FORCE_TEXT; FORCE_TEXT;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment