dwarf2out.c (gen_compile_unit_die): Emit DW_LANG_Ada95 instead of DW_LANG_Ada83 for Ada units.
* dwarf2out.c (gen_compile_unit_die): Emit DW_LANG_Ada95 instead of DW_LANG_Ada83 for Ada units. From-SVN: r65591
This commit is contained in:
parent
cbcafd35b7
commit
8cb5fbbf74
@ -1,3 +1,8 @@
|
||||
2003-04-14 Joel Brobecker <brobecker@gnat.com>
|
||||
|
||||
* dwarf2out.c (gen_compile_unit_die): Emit DW_LANG_Ada95 instead
|
||||
of DW_LANG_Ada83 for Ada units.
|
||||
|
||||
2003-04-14 Olivier Hainque <hainque@act-europe.fr>
|
||||
|
||||
* fold-const.c (fold): Reorder tests for conditional expressions.
|
||||
|
@ -11447,7 +11447,7 @@ gen_compile_unit_die (filename)
|
||||
if (strcmp (language_string, "GNU C++") == 0)
|
||||
language = DW_LANG_C_plus_plus;
|
||||
else if (strcmp (language_string, "GNU Ada") == 0)
|
||||
language = DW_LANG_Ada83;
|
||||
language = DW_LANG_Ada95;
|
||||
else if (strcmp (language_string, "GNU F77") == 0)
|
||||
language = DW_LANG_Fortran77;
|
||||
else if (strcmp (language_string, "GNU Pascal") == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user