Commit 7b1f7d51 by Per Bothner

* dbxout.c (dbxout_type_fields): Skip field if DECL_IGNORED_P.

From-SVN: r14259
parent 16c81040
......@@ -640,6 +640,8 @@ dbxout_type_fields (type)
|| TREE_CODE (DECL_SIZE (tem)) != INTEGER_CST))
continue;
/* Omit here the nameless fields that are used to skip bits. */
else if (DECL_IGNORED_P (tem))
continue;
else if (TREE_CODE (tem) != CONST_DECL)
{
/* Continue the line if necessary,
......
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