Commit 7532a0fb by Richard Kenner

(output_compile_unit_die): Add support for Pascal.

From-SVN: r14627
parent cff9c407
...@@ -3661,6 +3661,8 @@ output_compile_unit_die (arg) ...@@ -3661,6 +3661,8 @@ output_compile_unit_die (arg)
language_attribute (LANG_ADA83); language_attribute (LANG_ADA83);
else if (strcmp (language_string, "GNU F77") == 0) else if (strcmp (language_string, "GNU F77") == 0)
language_attribute (LANG_FORTRAN77); language_attribute (LANG_FORTRAN77);
else if (strcmp (language_string, "GNU Pascal") == 0)
language_attribute (LANG_PASCAL83);
else if (flag_traditional) else if (flag_traditional)
language_attribute (LANG_C); language_attribute (LANG_C);
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment