PR symtab/12441:
* dwarf2read.c (prepare_one_comp_unit): Don't call set_cu_language with `language_minimal'.
This commit is contained in:
parent
8786b2bd8f
commit
9cded63fc1
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2011-03-28 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
PR symtab/12441:
|
||||
* dwarf2read.c (prepare_one_comp_unit): Don't call set_cu_language
|
||||
with `language_minimal'.
|
||||
|
||||
2011-03-25 Ulrich Weigand <ulrich.weigand@linaro.org>
|
||||
|
||||
* arm-tdep.c (arm_elf_make_msymbol_special): Use ARM_SYM_BRANCH_TYPE
|
||||
|
|
|
@ -14679,7 +14679,10 @@ prepare_one_comp_unit (struct dwarf2_cu *cu, struct die_info *comp_unit_die)
|
|||
if (attr)
|
||||
set_cu_language (DW_UNSND (attr), cu);
|
||||
else
|
||||
set_cu_language (language_minimal, cu);
|
||||
{
|
||||
cu->language = language_minimal;
|
||||
cu->language_defn = language_def (cu->language);
|
||||
}
|
||||
}
|
||||
|
||||
/* Release one cached compilation unit, CU. We unlink it from the tree
|
||||
|
|
Loading…
Reference in a new issue