aboutsummaryrefslogtreecommitdiff
path: root/gcc/dwarfout.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-10-26 21:40:40 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1995-10-26 21:40:40 -0400
commit439eb7764a0c430e25c41920936520b35cbd0381 (patch)
treeb383034c4ccc09e2ab838a213de865691284037e /gcc/dwarfout.c
parentc6e84dc4845c7da5bf2d477a531a23b9dee5b907 (diff)
downloadgcc-439eb7764a0c430e25c41920936520b35cbd0381.zip
gcc-439eb7764a0c430e25c41920936520b35cbd0381.tar.gz
gcc-439eb7764a0c430e25c41920936520b35cbd0381.tar.bz2
(output_compile_unit_die): Handle language_string of "GNU F77".
From-SVN: r10525
Diffstat (limited to 'gcc/dwarfout.c')
-rw-r--r--gcc/dwarfout.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c
index b10de49..b484e5a 100644
--- a/gcc/dwarfout.c
+++ b/gcc/dwarfout.c
@@ -1,5 +1,5 @@
/* Output Dwarf format symbol table information from the GNU C compiler.
- Copyright (C) 1992, 1993 Free Software Foundation, Inc.
+ Copyright (C) 1992, 1993, 1995 Free Software Foundation, Inc.
Written by Ron Guilmette (rfg@netcom.com) for
Network Computing Devices, August, September, October, November 1990.
@@ -3463,6 +3463,8 @@ output_compile_unit_die (arg)
language_attribute (LANG_C_PLUS_PLUS);
else if (strcmp (language_string, "GNU Ada") == 0)
language_attribute (LANG_ADA83);
+ else if (strcmp (language_string, "GNU F77") == 0)
+ language_attribute (LANG_FORTRAN77);
else if (flag_traditional)
language_attribute (LANG_C);
else