From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16534 invoked by alias); 19 Jul 2004 09:05:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 16513 invoked by uid 48); 19 Jul 2004 09:05:43 -0000 Date: Mon, 19 Jul 2004 09:05:00 -0000 Message-ID: <20040719090543.16512.qmail@sourceware.org> From: "c dot lemmen at fz-juelich dot de" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20031030122848.12840.jv244@cam.ac.uk> References: <20031030122848.12840.jv244@cam.ac.uk> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug fortran/12840] Unable to find scalarization loop specifier X-Bugzilla-Reason: CC X-SW-Source: 2004-07/txt/msg02279.txt.bz2 List-Id: ------- Additional Comments From c dot lemmen at fz-juelich dot de 2004-07-19 09:05 ------- Same problem with this code snippet (compiled gcc-3.5.0 20040719 / i486-suse-linux) SUBROUTINE test_spread(nlats,nlons) IMPLICIT NONE INTEGER, intent(in) :: nlats, nlons INTEGER :: npoints,i INTEGER, dimension(nlats*nlons) :: index npoints=nlats*nlons index=reshape(spread((/(i,i=1,nlats)/),dim=2,ncopies=nlons),(/npoints/)) return END subroutine test_spread -- What |Removed |Added ---------------------------------------------------------------------------- CC| |c dot lemmen at fz-juelich | |dot de http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12840