From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14307 invoked by alias); 27 Feb 2015 11:33:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 14258 invoked by uid 48); 27 Feb 2015 11:33:47 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug libfortran/65234] Output descriptor (*(1E15.7)) not accepted Date: Fri, 27 Feb 2015 12:24:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libfortran X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: NEW X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-02/txt/msg03043.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65234 Dominique d'Humieres changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2015-02-27 Ever confirmed|0 |1 --- Comment #2 from Dominique d'Humieres --- Confirmed. > What for example if one wants to emit/read an even number of floats like > with: '(*(2E15.7))'? I think this expectation is wrong, i.e., writing an array with an odd number of elements will print the whole army as demonstrated by the following test real :: a(11) = [(i,i=1,11)] print '(*(2(E15.3)))', a end which gives at run time 0.100E+01 0.200E+01 0.300E+01 0.400E+01 0.500E+01 0.600E+01 0.700E+01 0.800E+01 0.900E+01 0.100E+02 0.110E+02