From 7b1f7d51a7a9d70d754d04b28d3463f92ae96c83 Mon Sep 17 00:00:00 2001 From: Per Bothner Date: Wed, 18 Jun 1997 18:17:36 -0700 Subject: [PATCH] * dbxout.c (dbxout_type_fields): Skip field if DECL_IGNORED_P. From-SVN: r14259 --- gcc/dbxout.c | 2 ++ 1 file changed, 2 insertions(+) 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, -- 2.30.2