From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24753 invoked by alias); 30 Apr 2013 12:22:44 -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 24704 invoked by uid 48); 30 Apr 2013 12:22:41 -0000 From: "janus at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/57117] [OOP] ICE for sourced allocation of a polymorphic entity using TRANSPOSE Date: Tue, 30 Apr 2013 12:22: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: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: janus at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: CC Summary 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 X-SW-Source: 2013-04/txt/msg02429.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57117 janus at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |janus at gcc dot gnu.org Summary|CLASS(*): ICE for sourced |[OOP] ICE for sourced |allocation of a UP entity |allocation of a polymorphic |that uses the transpose |entity using TRANSPOSE |intrinsic | --- Comment #2 from janus at gcc dot gnu.org 2013-04-30 12:22:40 UTC --- Also this one can be triggered without UP: implicit none type :: ti end type class(ti), allocatable :: x(:,:), y(:,:) allocate(y(3,3), source=transpose(x)) end