diff options
author | Richard Stallman <rms@gnu.org> | 1992-05-27 21:54:51 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-05-27 21:54:51 +0000 |
commit | 5e32e83b4ae051b174090daf4cfec035580b3027 (patch) | |
tree | ceaac7c55a0279f530aa4e2cd45fb2955931d114 | |
parent | d9ca49d580e2cba9bce7c1b5aba24bdfc55d874d (diff) | |
download | gcc-5e32e83b4ae051b174090daf4cfec035580b3027.zip gcc-5e32e83b4ae051b174090daf4cfec035580b3027.tar.gz gcc-5e32e83b4ae051b174090daf4cfec035580b3027.tar.bz2 |
*** empty log message ***
From-SVN: r1104
-rw-r--r-- | gcc/sdbout.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c index 4f6c4e5..1911e50 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))) |