summaryrefslogtreecommitdiff
path: root/gcc/sdbout.c
diff options
context:
space:
mode:
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>1993-11-08 22:57:28 +0000
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>1993-11-08 22:57:28 +0000
commit0763b6de040013bb6beb6966c6e2fde4b5456d9b (patch)
tree9fcc575b3410af1072c00a367719ee9b58707432 /gcc/sdbout.c
parentb060ec326d2351b9c6b84b8170890842c31b0a11 (diff)
downloadgcc-0763b6de040013bb6beb6966c6e2fde4b5456d9b.tar.gz
(sdbout_init) [RMS_QUICK_HACK_1]: Call sdbout_symbol for __vtbl_ptr_type.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6040 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r--gcc/sdbout.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c
index 3c0b519def7..25b800916b4 100644
--- a/gcc/sdbout.c
+++ b/gcc/sdbout.c
@@ -285,6 +285,14 @@ sdbout_init (asm_file, input_file_name, syms)
char *input_file_name;
tree syms;
{
+#ifdef RMS_QUICK_HACK_1
+ tree t;
+ for (t = syms; t; t = TREE_CHAIN (t))
+ if (DECL_NAME (t) && IDENTIFIER_POINTER (DECL_NAME (t)) != 0
+ && !strcmp (IDENTIFIER_POINTER (DECL_NAME (t)), "__vtbl_ptr_type"))
+ sdbout_symbol (t, 0);
+#endif
+
#if 0 /* Nothing need be output for the predefined types. */
/* Get all permanent types that have typedef names,
and output them all, except for those already output. */