From: Per Bothner Date: Thu, 19 Jun 1997 01:17:36 +0000 (-0700) Subject: * dbxout.c (dbxout_type_fields): Skip field if DECL_IGNORED_P. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7b1f7d51a7a9d70d754d04b28d3463f92ae96c83;p=gcc.git * dbxout.c (dbxout_type_fields): Skip field if DECL_IGNORED_P. From-SVN: r14259 --- diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 80d2f83849f..a0a9665acab 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -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,