Commit 15f1a795 by Jason Merrill Committed by Jason Merrill

search.c (note_debug_info_needed): Walk the bases even if we weren't deferring the type itself.

        * search.c (note_debug_info_needed): Walk the bases even if we
        weren't deferring the type itself.

From-SVN: r32395
parent e23c0ba3
2000-03-07 Jason Merrill <jason@casey.cygnus.com>
* search.c (note_debug_info_needed): Walk the bases even if we
weren't deferring the type itself.
2000-03-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 2000-03-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* decl2.c (finish_objects): Constify a char*. * decl2.c (finish_objects): Constify a char*.
......
...@@ -3259,11 +3259,11 @@ void ...@@ -3259,11 +3259,11 @@ void
note_debug_info_needed (type) note_debug_info_needed (type)
tree type; tree type;
{ {
if (! TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type))) if (TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type)))
return; {
TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type)) = 0; TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type)) = 0;
rest_of_type_compilation (type, toplevel_bindings_p ()); rest_of_type_compilation (type, toplevel_bindings_p ());
}
dfs_walk (TYPE_BINFO (type), dfs_debug_mark, dfs_debug_unmarkedp, 0); dfs_walk (TYPE_BINFO (type), dfs_debug_mark, dfs_debug_unmarkedp, 0);
} }
......
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