aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
authorTobias Schlüter <tobias.schlueter@physik.uni-muenchen.de>2005-11-16 11:58:41 +0100
committerTobias Schlüter <tobi@gcc.gnu.org>2005-11-16 11:58:41 +0100
commit80a0c50a3cd4f36e66159b964c45bde02930c1e7 (patch)
tree0af5422f6aaf67164e3c8bd7c0567491519d18dc /gcc/gcc.c
parent1367ca38617767bcb2d3733d57863d897742e274 (diff)
downloadgcc-80a0c50a3cd4f36e66159b964c45bde02930c1e7.zip
gcc-80a0c50a3cd4f36e66159b964c45bde02930c1e7.tar.gz
gcc-80a0c50a3cd4f36e66159b964c45bde02930c1e7.tar.bz2
re PR fortran/24357 (whither ratfor?)
PR 24357 * doc/invoke.texi: Distinguish between free and fixed form instead of Fortran and Fortran 90/95. Remove ratfor from the list of supported languages. * gcc.c (default_compilers): Remove double entries, add entries for suffixes '.F90' and '.F95'. From-SVN: r107078
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r--gcc/gcc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index a644d08..e339c68 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -926,11 +926,10 @@ static const struct compiler default_compilers[] =
{".CPP", "#C++", 0, 0, 0}, {".ii", "#C++", 0, 0, 0},
{".ads", "#Ada", 0, 0, 0}, {".adb", "#Ada", 0, 0, 0},
{".f", "#Fortran", 0, 0, 0}, {".for", "#Fortran", 0, 0, 0},
- {".F", "#Fortran", 0, 0, 0}, {".FOR", "#Fortran", 0, 0, 0},
- {".FPP", "#Fortran", 0, 0, 0},
- {".f90", "#Fortran 95", 0, 0, 0}, {".f95", "#Fortran 95", 0, 0, 0},
{".fpp", "#Fortran", 0, 0, 0}, {".F", "#Fortran", 0, 0, 0},
{".FOR", "#Fortran", 0, 0, 0}, {".FPP", "#Fortran", 0, 0, 0},
+ {".f90", "#Fortran", 0, 0, 0}, {".f95", "#Fortran", 0, 0, 0},
+ {".F90", "#Fortran", 0, 0, 0}, {".F95", "#Fortran", 0, 0, 0},
{".r", "#Ratfor", 0, 0, 0},
{".p", "#Pascal", 0, 0, 0}, {".pas", "#Pascal", 0, 0, 0},
{".java", "#Java", 0, 0, 0}, {".class", "#Java", 0, 0, 0},