diff options
author | Tobias Schlüter <tobias.schlueter@physik.uni-muenchen.de> | 2004-08-31 21:41:15 +0200 |
---|---|---|
committer | Tobias Schlüter <tobi@gcc.gnu.org> | 2004-08-31 21:41:15 +0200 |
commit | c4dd5a8dd3ab775251b796a38e099e8b8f9341b3 (patch) | |
tree | ba5e07eae24d68ec64d4a40d0dbf9fe14b707e2b /gcc | |
parent | 8a210b0fb0b2e2de7811394b77db69f7921e9586 (diff) | |
download | gcc-c4dd5a8dd3ab775251b796a38e099e8b8f9341b3.zip gcc-c4dd5a8dd3ab775251b796a38e099e8b8f9341b3.tar.gz gcc-c4dd5a8dd3ab775251b796a38e099e8b8f9341b3.tar.bz2 |
* CONTRIB, NEWS, README, TODO: Remove obsolete files.
From-SVN: r86839
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fortran/CONTRIB | 33 | ||||
-rw-r--r-- | gcc/fortran/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/fortran/NEWS | 7 | ||||
-rw-r--r-- | gcc/fortran/README | 18 | ||||
-rw-r--r-- | gcc/fortran/TODO | 56 |
5 files changed, 4 insertions, 114 deletions
diff --git a/gcc/fortran/CONTRIB b/gcc/fortran/CONTRIB deleted file mode 100644 index 765dfe6..0000000 --- a/gcc/fortran/CONTRIB +++ /dev/null @@ -1,33 +0,0 @@ -Contributors to G95 - -If we have left anyone out, please let us know: -<gcc-g95-devel@lists.sourceforge.net> - - -Major code contributors ----------------------------------- -Andy Vaught -Katherine Holcomb -Steven Bosscher -Paul Brook -Arnaud Desitter -Canqun Yang -Xiaoqiang Zhang - - -Small patches (no copyright assignment) ----------------------------------- -Niels Kristian Bech Jensen -Steven G. Johnson -Tobias Schlüter - - -Helpful comments ----------------------------------- -Erik Schnetter -Steven G. Kargl -W. Clodius -Claus Fischer -Toon Moene -Richard T. Henderson - diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index a4f76e37..1655908 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,5 +1,9 @@ 2004-08-31 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de> + * CONTRIB, NEWS, README, TODO: Remove obsolete files. + +2004-08-31 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de> + PR fortran/17244 * trans-types.c (gfc_return_by_reference): Remove TODO error, add comment pointing out possible issue WRT compatibility with g77. diff --git a/gcc/fortran/NEWS b/gcc/fortran/NEWS deleted file mode 100644 index ce466fe..0000000 --- a/gcc/fortran/NEWS +++ /dev/null @@ -1,7 +0,0 @@ -2003-01-06 -This project is a fork of the original G95 project. The fork has the -support of the GCC community. We still persue mostly the same goals -as the original project, but we hope we can attrack more developers -through better cooperation and communication, and we target quicker -inclusion in GCC. - diff --git a/gcc/fortran/README b/gcc/fortran/README deleted file mode 100644 index fc28c99..0000000 --- a/gcc/fortran/README +++ /dev/null @@ -1,18 +0,0 @@ -The goal of the gcc-g95 project is to create a Free (as -in speech) Fortran 95 compiler. The code has been donated -to the Free Software Foundation for inclusion in GCC, thE -GNU Compiler Collection. - -WARNING: - -G95 is still under development. Perusing the g77 source, we estimate -that about 200,000 lines of code will be necessary to fully implement -g95. Currently, G95 is about 70,000 lines long, making it about -version 0.3. - -The current g95 can generate code for most legal Fortran 77 programs, -and we're getting close to being able to compile most Fortran 95 -programs as well. The generated code may still be quite poor, however. -Part of this is a back-end issue, since we're using the Work-In-Progress -tree-ssa infrastructure. - diff --git a/gcc/fortran/TODO b/gcc/fortran/TODO deleted file mode 100644 index 023ac34..0000000 --- a/gcc/fortran/TODO +++ /dev/null @@ -1,56 +0,0 @@ -TODO - -Parser fixes: ------------- - -In a constant format string given to a data transfer statement, the -locus of any problems in the string isn't guaranteed to come out -right, because there is not a 1:1 correspondence between source -characters and characters in the string. This scheme totally doesn't -work for format strings that are longer than a physical line. - -Fix IMPLICIT to allow forward references of derived types. - -Array issues in expressions and intrinsics. - -Resolve scoping issues. Create symbols in correct namespaces. - -Finish resolution phase. - -Finish compiler side of intrinsic functions. - -Allow init exprs to be numbers raised to integer powers (negative too). - -See about making emacs-parsable error messages. - - -Biggies: --------- - -Interface to code generator. - -Complete runtime library. - - -Known bugs: ------------ - -Failure to set the expr_locus field in g95_expr structures. - - -And for the really pedantic ---------------------------- - -Fix INCLUDE such that it only appears on a single line. The current -code allows things like: - - 0I - 1NCLUDE "filename" - -or its free form equivalent: - -I& -NCLUDE "filename" - -This is explicitly forbidden by the F95 standard (ref. section 3.4). - |