diff options
author | Tobias Burnus <burnus@net-b.de> | 2007-01-26 09:35:19 +0100 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2007-01-26 09:35:19 +0100 |
commit | 7befd5d26a19507b98e417275f72dcf8f26ba385 (patch) | |
tree | 26ea84131dede30ad486d4bce02781c268e568c8 /gcc/fortran/options.c | |
parent | 4b26d10bccf3532cfee49f09346f0c1376d9968b (diff) | |
download | gcc-7befd5d26a19507b98e417275f72dcf8f26ba385.tar.gz |
lang-specs.h: Add support for .f03 and .F03 extensions.
fortran/
2007-01-26 Tobias Burnus <burnus@net-b.de>
* lang-specs.h: Add support for .f03 and .F03 extensions.
* gfortran.texi: Document .f03 extension.
* options.c (form_from_filename): Recognize .f03.
testsuite/
2007-01-26 Tobias Burnus <burnus@net-b.de>
* gfortran.dg/gomp/gomp.exp: Support .f03 extension.
* gfortran.dg/vect/vect.exp: Ditto.
* gfortran.dg/dg.exp: Ditto.
* gfortran.fortran-torture/execute/execute.exp: Ditto.
* gfortran.fortran-torture/compile/compile.exp: Ditto.
libgomp/
2007-01-26 Tobias Burnus <burnus@net-b.de>
* testsuite/libgomp.fortran/fortran.exp: Support .f03 extension.
From-SVN: r121201
Diffstat (limited to 'gcc/fortran/options.c')
-rw-r--r-- | gcc/fortran/options.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/fortran/options.c b/gcc/fortran/options.c index 056ba33ff6d..4a00cea28a7 100644 --- a/gcc/fortran/options.c +++ b/gcc/fortran/options.c @@ -136,6 +136,9 @@ form_from_filename (const char *filename) ".f95", FORM_FREE} , { + ".f03", FORM_FREE} + , + { ".f", FORM_FIXED} , { |