From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6298 invoked by alias); 5 Oct 2011 22:20:36 -0000 Received: (qmail 6284 invoked by uid 22791); 5 Oct 2011 22:20:34 -0000 X-SWARE-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 05 Oct 2011 22:20:19 +0000 From: "pault at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/47844] Array stride ignored for pointer-valued function results Date: Wed, 05 Oct 2011 22:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: minor X-Bugzilla-Who: pault at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: pault at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: AssignedTo Message-ID: In-Reply-To: References: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 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 X-SW-Source: 2011-10/txt/msg00287.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47844 Paul Thomas changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|unassigned at gcc dot |pault at gcc dot gnu.org |gnu.org | --- Comment #9 from Paul Thomas 2011-10-05 22:20:13 UTC --- Created attachment 25425 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=25425 a draft patch for the pr This has been partially regtested and looks OK at 20k tests or so - I had to head off to bed! If all is well, I will look for a slightly cleaner place to use the returned stride; this place might not exist of course! I will submit tomorrow with the test case below. Cheers Paul ! (dg-do run } ! Test the fix for PR47844, in which the stride in the function result ! was ignored. Previously, the result was [1,3] at lines 15 and 16. ! ! Contributed by KePu ! PROGRAM test_pointer_value IMPLICIT NONE INTEGER, DIMENSION(10), TARGET :: array= [1,3,5,7,9,11,13,15,17,19] INTEGER, dimension(2) :: array_fifth INTEGER, POINTER, DIMENSION(:) :: ptr_array => NULL() INTEGER, POINTER, DIMENSION(:) :: ptr_array_fifth => NULL() ptr_array => array array_fifth = every_fifth (ptr_array) if (any (array_fifth .ne. [1,11])) call abort if (any (every_fifth(ptr_array) .ne. [1,11])) call abort CONTAINS FUNCTION every_fifth (ptr_array) RESULT (ptr_fifth) IMPLICIT NONE INTEGER, POINTER, DIMENSION(:) :: ptr_fifth INTEGER, POINTER, DIMENSION(:), INTENT(in) :: ptr_array INTEGER :: low INTEGER :: high low = LBOUND (ptr_array, 1) high = UBOUND (ptr_array, 1) ptr_fifth => ptr_array (low: high: 5) END FUNCTION every_fifth END PROGRAM test_pointer_value