diff options
Diffstat (limited to 'gdb/dwarf2/read.c')
-rw-r--r-- | gdb/dwarf2/read.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c index fb138de..3bbd253 100644 --- a/gdb/dwarf2/read.c +++ b/gdb/dwarf2/read.c @@ -9477,8 +9477,8 @@ process_full_comp_unit (dwarf2_cu *cu, enum language pretend_language) compilation is from a C file generated by language preprocessors, do not set the language if it was already deduced by start_subfile. */ if (!(cu->per_cu->lang == language_c - && cust->primary_filetab ()->language != language_unknown)) - cust->primary_filetab ()->language = cu->per_cu->lang; + && cust->primary_filetab ()->language () != language_unknown)) + cust->primary_filetab ()->set_language (cu->per_cu->lang); /* GCC-4.0 has started to support -fvar-tracking. GCC-3.x still can produce DW_AT_location with location lists but it can be possibly @@ -9562,8 +9562,8 @@ process_full_type_unit (dwarf2_cu *cu, do not set the language if it was already deduced by start_subfile. */ if (!(cu->per_cu->lang == language_c - && cust->primary_filetab ()->language != language_c)) - cust->primary_filetab ()->language = cu->per_cu->lang; + && cust->primary_filetab ()->language () != language_c)) + cust->primary_filetab ()->set_language (cu->per_cu->lang); } } else |