* dwarf2read.c (set_cu_language): Recognize also DW_LANG_C99.
This commit is contained in:
Jan Kratochvil 2009-05-21 07:57:45 +00:00
parent 4ac3663827
commit 76bee0cceb
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2009-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
* dwarf2read.c (set_cu_language): Recognize also DW_LANG_C99.
2009-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
Fix parsing DW_AT_const_value using DW_FORM_string.

View File

@ -6876,6 +6876,7 @@ set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
switch (lang)
{
case DW_LANG_C89:
case DW_LANG_C99:
case DW_LANG_C:
cu->language = language_c;
break;