From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23744 invoked by alias); 28 Oct 2005 23:03:26 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 23531 invoked by uid 22791); 28 Oct 2005 23:03:17 -0000 Received: from moutng.kundenserver.de (HELO moutng.kundenserver.de) (212.227.126.171) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Fri, 28 Oct 2005 23:03:17 +0000 Received: from p50861EB9.dip0.t-ipconnect.de [80.134.30.185] (helo=meiner.onlinehome.de) by mrelayeu.kundenserver.de with ESMTP (Nemesis), id 0ML25U-1EVdFc0O3f-0004yL; Sat, 29 Oct 2005 01:03:08 +0200 Received: from ig25 by meiner.onlinehome.de with local (Exim 3.36 #1 (Debian)) id 1EVdFc-0001ZJ-00; Sat, 29 Oct 2005 01:03:08 +0200 Date: Sat, 29 Oct 2005 02:40:00 -0000 To: Wu Zhou Cc: gdb-patches@sources.redhat.com, fortran@gcc.gnu.org Subject: Re: [RFC]: Patch to type and value print Fortran derived type - Fix for gfortran PR24527 Message-ID: <20051028230308.GA5758@meiner.onlinehome.de> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 From: Thomas Koenig X-SW-Source: 2005-10/txt/msg00219.txt.bz2 I can't easily test your patch because I don't compile gdb from sources. One test case that might be worth testing is program main type foo real :: a end type foo type bar type(foo) :: x real :: y end type bar type(bar) :: z z%x%a = 1.0 z%y = 1.2 print *,z end program main where a type contains another type.