From: Devang Patel Date: Wed, 20 Jul 2005 00:24:49 +0000 (-0700) Subject: * dbxout.c (dbxout_type): Check Objective-C++ lang. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f37d7c6065a4f64b7af059bc8cbd05c3e7f2e9cf;p=gcc.git * dbxout.c (dbxout_type): Check Objective-C++ lang. From-SVN: r102181 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d411fc276b3..45251cbfc49 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-07-19 Devang Patel + + * dbxout.c (dbxout_type): Check Objective-C++ lang. + 2005-07-19 Richard Henderson PR tree-opt/22278 diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 74e4bb8daa8..caff4f2faf9 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -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. */