Commit f37d7c60 by Devang Patel Committed by Devang Patel

* dbxout.c (dbxout_type): Check Objective-C++ lang.

From-SVN: r102181
parent a897e989
2005-07-19 Devang Patel <dpatel@apple.com>
* dbxout.c (dbxout_type): Check Objective-C++ lang.
2005-07-19 Richard Henderson <rth@redhat.com>
PR tree-opt/22278
......
......@@ -2081,7 +2081,8 @@ dbxout_type (tree type, int full)
access == access_protected_node
? '1' :'0');
if (BINFO_VIRTUAL_P (child)
&& strcmp (lang_hooks.name, "GNU C++") == 0)
&& (strcmp (lang_hooks.name, "GNU C++") == 0
|| strcmp (lang_hooks.name, "GNU Objective-C++") == 0))
/* For a virtual base, print the (negative)
offset within the vtable where we must look
to find the necessary adjustment. */
......
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