From 5e32e83b4ae051b174090daf4cfec035580b3027 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Wed, 27 May 1992 21:54:51 +0000 Subject: [PATCH] *** empty log message *** From-SVN: r1104 --- gcc/sdbout.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gcc/sdbout.c b/gcc/sdbout.c index 4f6c4e59966..1911e506568 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -597,6 +597,9 @@ sdbout_symbol (decl, local) int regno = -1; char *name; + if (DECL_IGNORED_P (decl)) + return; + sdbout_one_type (type); switch (TREE_CODE (decl)) @@ -801,6 +804,9 @@ sdbout_toplevel_data (decl) { tree type = TREE_TYPE (decl); + if (DECL_IGNORED_P (decl)) + return; + if (! (TREE_CODE (decl) == VAR_DECL && GET_CODE (DECL_RTL (decl)) == MEM && DECL_INITIAL (decl))) -- 2.30.2