diff options
author | Thomas Koenig <tkoenig@gcc.gnu.org> | 2011-01-08 22:59:42 +0000 |
---|---|---|
committer | Thomas Koenig <tkoenig@gcc.gnu.org> | 2011-01-08 22:59:42 +0000 |
commit | f90b55a606b035494d2abe9196e81af36786024c (patch) | |
tree | 24a796a78c5c475309e5da345e71a718b17b353f /gcc/fortran | |
parent | 28a2c1d59494aa2828c28293fbb60f428184fc55 (diff) | |
download | gcc-f90b55a606b035494d2abe9196e81af36786024c.tar.gz |
re PR fortran/46405 (Preprocessor generated code can exceed 132 characters)
2011-01-08 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/46405
* invoke.texi: Mention -ffree-line-length-none and
-ffixed-line-length-none for preprocessing.
From-SVN: r168604
Diffstat (limited to 'gcc/fortran')
-rw-r--r-- | gcc/fortran/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/fortran/invoke.texi | 8 |
2 files changed, 11 insertions, 3 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index f24c22f7016..b65a21fc86b 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2011-01-08 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR fortran/46405 + * invoke.texi: Mention -ffree-line-length-none and + -ffixed-line-length-none for preprocessing. + 2011-01-08 Paul Thomas <pault@gcc.gnu.org> PR fortran/46896 diff --git a/gcc/fortran/invoke.texi b/gcc/fortran/invoke.texi index 3dcdbcc9763..91313212049 100644 --- a/gcc/fortran/invoke.texi +++ b/gcc/fortran/invoke.texi @@ -394,9 +394,11 @@ this option to manually enable preprocessing of any kind of Fortran file. To disable preprocessing of files with any of the above listed extensions, use the negative form: @option{-nocpp}. -The preprocessor is run in traditional mode, be aware that any -restrictions of the file-format, e.g. fixed-form line width, -apply for preprocessed output as well. +The preprocessor is run in traditional mode. Any restrictions of the +file-format, especially the limits on line length, apply for +preprocessed output as well, so it might be advisable to use the +@option{-ffree-line-length-none} or @option{-ffixed-line-length-none} +options. @item -dM @opindex @code{dM} |