This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/25486] [4.1/4.2 Regression] fortran fixed-form literal character constant not padded.
- From: "aldot at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 27 Dec 2005 14:54:26 -0000
- Subject: [Bug fortran/25486] [4.1/4.2 Regression] fortran fixed-form literal character constant not padded.
- References: <bug-25486-10110@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #6 from aldot at gcc dot gnu dot org 2005-12-27 14:54 -------
The patch does fix it, the behaviour of line-length-none is documented and
expected.
trunk with the patch gives:
$ gfortran-4.2-HEAD -o pr25486 gfortran.pr25486.f
$ ./pr25486
1234567 89 0
$ gfortran-4.2-HEAD -ffixed-line-length-0 -o pr25486 gfortran.pr25486.f
$ ./pr25486
123456789 0
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25486