From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 58264 invoked by alias); 14 Jun 2015 08:15:07 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 58252 invoked by uid 89); 14 Jun 2015 08:15:06 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.5 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=no version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Sun, 14 Jun 2015 08:15:05 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id 9B57D2D127B; Sun, 14 Jun 2015 08:15:04 +0000 (UTC) Received: from host1.jankratochvil.net (ovpn-116-41.ams2.redhat.com [10.36.116.41]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t5E8EtJC014242 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 14 Jun 2015 04:15:02 -0400 Date: Sun, 14 Jun 2015 08:15:00 -0000 From: Jan Kratochvil To: Keven Boell Cc: gdb-patches@sourceware.org Subject: Re: [V4 00/21] Fortran dynamic array support Message-ID: <20150614081454.GA29096@host1.jankratochvil.net> References: <1421243390-24015-1-git-send-email-keven.boell@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1421243390-24015-1-git-send-email-keven.boell@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2015-06/txt/msg00279.txt.bz2 Hello, On Wed, 14 Jan 2015 14:49:32 +0100, Keven Boell wrote: > This patch series add Fortran dynamic array support to gdb. does Intel some work in progress or plans for slices/subsets? It is a working feature in gfortran but currently not in GDB: http://pkgs.fedoraproject.org/cgit/gdb.git/tree/gdb-archer-vla-tests.patch#n2295 p var(1, 2:) = (21, 31) p var(:, :) = ((11, 12, 13, 14) (21, 22, 23, 24) (31, 32, 33, 34)) p var(:) = Wrong number of subscripts p var(:, :, :) = Wrong number of subscripts Jan