Commit 18205693 by Richard Stallman

(sdbout_init) [RMS_QUICK_HACK_1]: Call sdbout_symbol for __vtbl_ptr_type.

From-SVN: r6040
parent 840f571b
...@@ -285,6 +285,14 @@ sdbout_init (asm_file, input_file_name, syms) ...@@ -285,6 +285,14 @@ sdbout_init (asm_file, input_file_name, syms)
char *input_file_name; char *input_file_name;
tree syms; 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. */ #if 0 /* Nothing need be output for the predefined types. */
/* Get all permanent types that have typedef names, /* Get all permanent types that have typedef names,
and output them all, except for those already output. */ and output them all, except for those already output. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment