diff options
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 55bb264..557730d 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -4831,6 +4831,13 @@ is_c_family () } static inline int +is_cxx () +{ + return (get_AT_unsigned (comp_unit_die, DW_AT_language) + == DW_LANG_C_plus_plus); +} + +static inline int is_fortran () { unsigned lang = get_AT_unsigned (comp_unit_die, DW_AT_language); @@ -8414,7 +8421,7 @@ add_data_member_location_attribute (die, decl) { /* We're working on the TAG_inheritance for a base class. */ - if (TREE_VIA_VIRTUAL (decl)) + if (TREE_VIA_VIRTUAL (decl) && is_cxx ()) { /* For C++ virtual bases we can't just use BINFO_OFFSET, as they aren't at a fixed offset from all (sub)objects of the same |